import * as react from 'react'; import { ComponentProps, ReactNode } from 'react'; import * as react_jsx_runtime from 'react/jsx-runtime'; import * as DialogPrimitive from '@radix-ui/react-dialog'; declare type DialogProps = ComponentProps & { children: ReactNode; }; declare function Dialog({ children, ...props }: DialogProps): react_jsx_runtime.JSX.Element; declare const DialogTrigger: react.ForwardRefExoticComponent>; declare const DialogClose: react.ForwardRefExoticComponent>; declare const DialogTitle: react.ForwardRefExoticComponent>; declare const DialogDescription: react.ForwardRefExoticComponent>; export { Dialog as D, DialogTrigger as a, DialogClose as b, DialogTitle as c, DialogDescription as d };