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<TransitionProps>;
    role?: string;
    id?: string;
    children: React.ReactNode;
}
declare const Popup: React.ForwardRefExoticComponent<PopupProps & React.RefAttributes<HTMLDivElement>>;
export default Popup;
//# sourceMappingURL=Popup.d.ts.map