8 lines
313 B
TypeScript
8 lines
313 B
TypeScript
|
import * as React from 'react';
|
||
|
export interface PopupContentProps {
|
||
|
children?: React.ReactNode;
|
||
|
cache?: boolean;
|
||
|
}
|
||
|
declare const PopupContent: React.MemoExoticComponent<({ children }: PopupContentProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>>>;
|
||
|
export default PopupContent;
|