export type ModalProps = { visible?: boolean; onRequestClose?: (e?: any) => void; children?: any; }; export declare const Modal: ({ visible, onRequestClose, children }: ModalProps) => import("react/jsx-runtime").JSX.Element;