import React from "react"; export declare type ModalProps = { open: boolean | null; onClose: (status: boolean | null) => void; onClosed?: () => void; disablePortal?: boolean; duration?: number; }; declare const Modal: React.FC; export default Modal;