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 DialogPortal: React.FC; declare const DialogClose: React.ForwardRefExoticComponent>; declare const DialogOverlay: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const DialogContent: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare function DialogHeader({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; declare namespace DialogHeader { var displayName: string; } declare function DialogFooter({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; declare namespace DialogFooter { var displayName: string; } declare const DialogTitle: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const DialogDescription: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { Dialog, DialogPortal, DialogOverlay, DialogClose, DialogTrigger, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription, };