import React from 'react'; import { DialogProps } from '@mui/material'; export interface ModalProps extends Omit { open?: boolean; onClose?: () => void; title?: string; description?: string; maxWidth?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | false; fullScreen?: boolean; fullWidth?: boolean; showCloseButton?: boolean; footer?: React.ReactNode; } export declare const Modal: React.FC; export default Modal;