UNPKG

967 BTypeScriptView Raw
1import React from 'react';
2import { TransitionProps } from 'react-transition-group/Transition';
3export interface StaticContainerProps {
4 children: React.ReactNode;
5 shouldUpdate?: boolean;
6}
7export declare const StaticContainer: React.MemoExoticComponent<({ children }: StaticContainerProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>>>;
8export interface PopupProps {
9 className?: string;
10 open?: boolean;
11 dropUp?: boolean;
12 onEnter?: () => void;
13 onEntering?: () => void;
14 onEntered?: () => void;
15 onExit?: () => void;
16 onExited?: () => void;
17 onExiting?: () => void;
18 transition?: React.ComponentType<TransitionProps>;
19 role?: string;
20 id?: string;
21 children: React.ReactNode;
22 [prop: string]: unknown;
23}
24declare const Popup: React.ForwardRefExoticComponent<Pick<PopupProps, keyof PopupProps> & React.RefAttributes<HTMLDivElement>>;
25export default Popup;
26//# sourceMappingURL=Popup.d.ts.map
\No newline at end of file