/** Centred modal on an 80% black scrim with a 4px backdrop blur. Escape and scrim click close it. export interface DialogProps { open?: boolean; onOpenChange?: (open: boolean) => void; children?: React.ReactNode; } export function Dialog(props: DialogProps): JSX.Element | null; export function DialogContent(props: React.HTMLAttributes & { width?: number }): JSX.Element; export function DialogHeader(props: React.HTMLAttributes): JSX.Element; export function DialogTitle(props: React.HTMLAttributes): JSX.Element; export function DialogDescription(props: React.HTMLAttributes): JSX.Element; export function DialogFooter(props: React.HTMLAttributes): JSX.Element;