import { ModalProps, SxProps } from '@mui/material'; export type EliceModalProps = { open: boolean; handleClose: () => void; iconClose?: boolean; fontFamily?: string; sx?: SxProps; } & ModalProps; declare const EliceModal: (props: EliceModalProps) => import("react/jsx-runtime").JSX.Element; export default EliceModal;