import * as DialogPrimitive from '@radix-ui/react-dialog'; import * as React from 'react'; declare const Dialog: React.FC; declare const DialogTrigger: React.ForwardRefExoticComponent>; declare const DialogContent: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const DialogHeader: { ({ className, ...props }: React.HTMLAttributes): React.JSX.Element; displayName: string; }; declare const DialogFooter: { ({ className, ...props }: React.HTMLAttributes): React.JSX.Element; displayName: string; }; declare const DialogTitle: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const DialogDescription: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { DialogTrigger, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription }; export default Dialog; //# sourceMappingURL=Dialog.d.ts.map