import React from 'react'; export interface BaseModalProps { open: boolean; onClose?: () => void; onSubmit?: () => void; onDelete?: () => void; title?: string | JSX.Element; width?: string; height?: any; } export declare const BaseModal: React.FC;