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