import { ModalProps } from '@material-ui/core/Modal';
import { BackdropProps } from '@material-ui/core/Backdrop';
interface ModalType extends ModalProps {
    backdropProps: BackdropProps;
}
export { ModalType };
