import { ReactElement } from 'react'; export type ModalProps = { maxWidth?: number; title?: string; subtitle?: string | ReactElement; onClose?: () => void; hideHeader?: boolean; };