import * as DialogPrimitive from "@radix-ui/react-dialog"; import * as React from "react"; declare function Dialog({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function DialogTrigger({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function DialogContent({ className, children, showCloseButton, ...props }: React.ComponentProps & { showCloseButton?: boolean; }): import("react/jsx-runtime").JSX.Element; declare function DialogHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function DialogFooter({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function DialogTitle({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function DialogDescription({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, }; //# sourceMappingURL=dialog.d.ts.map