import React from 'react'; import { TransitionProps } from 'react-transition-group/Transition'; export interface PopupProps { className?: string; open?: boolean; dropUp?: boolean; onEnter?: () => void; onEntering?: () => void; onEntered?: () => void; onExit?: () => void; onExited?: () => void; onExiting?: () => void; transition?: React.ComponentType; role?: string; id?: string; children: React.ReactNode; } declare const Popup: React.ForwardRefExoticComponent>; export default Popup; //# sourceMappingURL=Popup.d.ts.map