import { DialogActionsProps, DialogContentProps } from "@mui/material"; import { DialogProps } from "@mui/material/Dialog"; import React, { ComponentType, ReactNode } from "react"; interface MESFModalProps extends Omit { handleClose: (shouldUpdate?: boolean) => void; open: boolean; id?: string; maxWidth?: "xs" | "sm" | "md" | "lg" | "xl" | false; children: ReactNode; title?: string; subtitle?: string; } declare function Modal({ children, title, subtitle, handleClose, open, id, maxWidth, }: MESFModalProps): React.JSX.Element; export declare const MesfModal: typeof Modal & { Content: ComponentType; Actions: ComponentType; }; export default MesfModal;