import { ReactNode } from 'react'; export interface DialogProps { open: boolean; onClose: () => void; title?: ReactNode; icon?: string; children?: ReactNode; actions?: ReactNode; fullscreen?: boolean; closeOnScrim?: boolean; ariaLabel?: string; ariaDescribedBy?: string; } export declare function Dialog({ open, onClose, title, icon, children, actions, fullscreen, closeOnScrim, ariaLabel, ariaDescribedBy, }: DialogProps): import('react').ReactPortal | null;