import { FC, ReactNode } from 'react'; import { BoxProps, ModalProps } from "@mui/material"; export interface CustomModalProps { open: boolean; onClose?: () => void; title?: string; children?: ReactNode; modalProps: Omit; boxProps?: BoxProps; leftTitle?: React.ReactNode; withoutDivider?: boolean; withoutHeader?: boolean; scrollableProps?: BoxProps; preventClose?: boolean; onClickTopLeftBtn?: () => void; topLeftBtnTitle?: string; maxHeight?: string | number; height?: string | number; } declare const CustomModal: FC; export default CustomModal;