import * as DialogPrimitive from "@radix-ui/react-dialog"; import type { ComponentPropsWithoutRef, HTMLAttributes } from "react"; interface ContentProps extends ComponentPropsWithoutRef { hideCloseButton?: boolean; } declare const Dialog: { (props: ComponentPropsWithoutRef): import("react").JSX.Element; displayName: string; } & { Trigger: import("react").ForwardRefExoticComponent>; Close: import("react").ForwardRefExoticComponent>; Content: import("react").ForwardRefExoticComponent>; Overlay: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; Header: { ({ className, ...props }: HTMLAttributes): import("react").JSX.Element; displayName: string; }; Body: { ({ className, ...props }: HTMLAttributes): import("react").JSX.Element; displayName: string; }; Footer: { ({ className, ...props }: HTMLAttributes): import("react").JSX.Element; displayName: string; }; Title: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; Description: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; }; export { Dialog };