import React from 'react'; interface DialogProps { open: boolean; onClose: () => void; className?: string; children: React.ReactNode; maxWidth?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | false; fullWidth?: boolean; fullScreen?: boolean; } interface DialogPanelProps { className?: string; children: React.ReactNode; } interface DialogTitleProps { children: React.ReactNode; className?: string; } export declare const Dialog: React.FC; export declare const DialogPanel: React.FC; export declare const DialogTitle: React.FC; export {}; //# sourceMappingURL=Dialog.d.ts.map