import { default as React, ComponentProps } from 'react'; import * as DialogPrimitives from '@radix-ui/react-dialog'; type DialogProps = { children?: React.ReactNode; isOpen: boolean; onClose: () => void; className?: string; /** * The title of the dialog. */ title: string; /** * The description of the dialog. */ description: string; } & ComponentProps; export declare const Dialog: ({ children, isOpen, onClose, className, title, description, ...rest }: DialogProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Dialog.d.ts.map