/// /** * Modal properties */ export interface ModalProperties { title: string; children: React.ReactNode; position?: 'relative' | 'absolute' | 'fixed'; onClose: (open?: boolean) => void; open: boolean; }