import * as React from "react"; interface DialogProps { children: React.ReactNode; defaultOpen?: boolean; open?: boolean; onOpenChange?: (open: boolean) => void; } declare const Dialog: React.FC; interface DialogTriggerProps { children: React.ReactNode; asChild?: boolean; } declare const DialogTrigger: React.ForwardRefExoticComponent & React.RefAttributes>; declare const DialogContent: React.ForwardRefExoticComponent & React.RefAttributes>; declare const DialogHeader: React.ForwardRefExoticComponent & React.RefAttributes>; declare const DialogTitle: React.ForwardRefExoticComponent & React.RefAttributes>; declare const DialogDescription: React.ForwardRefExoticComponent & React.RefAttributes>; declare const DialogFooter: React.ForwardRefExoticComponent & React.RefAttributes>; export { Dialog, DialogTrigger, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter };