import { ReactNode } from 'react'; export interface DialogProps { open: boolean; onClose: () => void; title?: string; children: ReactNode; width?: string; ariaLabel?: string; ariaDescribedBy?: string; closeLabel?: string; } export declare function Dialog({ open, onClose, title, children, width, ariaLabel, ariaDescribedBy, closeLabel, }: DialogProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=dialog.d.ts.map