interface Props {
    children?: any;
    onClose?: () => void;
    style?: any;
}
export default function Modal({ children, onClose, style }: Props): import("react/jsx-runtime").JSX.Element;
export {};
