import { DialogProps as MUIDialogProps } from '@mui/material/Dialog';
export type DialogProps = {
    showCloseButton?: boolean;
} & MUIDialogProps;
declare const Dialog: React.FunctionComponent<DialogProps>;
export default Dialog;
