import React from "react"; declare type Props = { onClose?: () => void; onSubmit?: () => void; open: boolean; children: React.ReactNode; }; export declare function Modal(props: Props): JSX.Element | null; export {};