import React from "react"; import { DialogContentProps, DialogProps, DialogTitleProps } from "@mui/material"; declare type ModalOptions = { closeIcon?: React.ReactNode; }; interface BasicModalProps extends DialogProps { divider?: React.ReactNode; DialogContentProps?: DialogContentProps; DialogTitleProps?: DialogTitleProps; options?: ModalOptions; } export type { BasicModalProps };