import { FC } from 'react'; interface ModalProps { isOpen: boolean; onClose: () => void; title?: string; width?: number | string; height?: number | string; children: React.ReactNode; } export declare const CustomModal: FC; export {};