import { FC } from 'react'; type DialogProps = { children: any; id?: string; }; export declare const Dialog: FC; export declare const DialogTitle: FC; export declare const DialogContent: FC; export declare const DialogActions: FC; export {};