import { ReactNode } from 'react'; export interface DialogProps { open: boolean; onClose: () => void; title?: string; description?: string; children: ReactNode; footer?: ReactNode; size?: "sm" | "md" | "lg" | "xl"; } export declare function Dialog({ open, onClose, title, description, children, footer, size }: DialogProps): import('react').ReactPortal | null; //# sourceMappingURL=Dialog.d.ts.map