UNPKG

640 BTypeScriptView Raw
1import React from 'react';
2import { TransitionProps } from 'react-transition-group/Transition';
3export interface PopupProps {
4 className?: string;
5 open?: boolean;
6 dropUp?: boolean;
7 onEnter?: () => void;
8 onEntering?: () => void;
9 onEntered?: () => void;
10 onExit?: () => void;
11 onExited?: () => void;
12 onExiting?: () => void;
13 transition?: React.ComponentType<TransitionProps>;
14 role?: string;
15 id?: string;
16 children: React.ReactNode;
17}
18declare const Popup: React.ForwardRefExoticComponent<PopupProps & React.RefAttributes<HTMLDivElement>>;
19export default Popup;
20//# sourceMappingURL=Popup.d.ts.map
\No newline at end of file