import * as React from "react"; interface DialogProps { open?: boolean; onOpenChange?: (open: boolean) => void; children: React.ReactNode; } interface DialogContentProps extends React.HTMLAttributes { children: React.ReactNode; } declare const Dialog: ({ open, onOpenChange, children }: DialogProps) => import("react/jsx-runtime").JSX.Element; declare const DialogContent: React.ForwardRefExoticComponent>; declare const DialogHeader: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const DialogTitle: React.ForwardRefExoticComponent & React.RefAttributes>; declare const DialogClose: { ({ className, onClick, ...props }: React.ButtonHTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Dialog, DialogContent, DialogHeader, DialogTitle, DialogClose }; //# sourceMappingURL=dialog.d.ts.map