import type { ReactNode } from 'react'; import type { DialogProps as MuiDialogProps } from '@mui/material/Dialog'; export interface DialogProps extends MuiDialogProps { /** Dialog heading rendered in a DialogTitle */ heading?: ReactNode; /** Rendered below the content area */ actions?: ReactNode; }