import * as React from "react"; import { Dialog as DialogPrimitive } from "radix-ui"; import { type VariantProps } from "../../utils.js"; declare const dialogTitleVariants: (props?: ({ size?: "sm" | "md" | "lg" | "xl" | "full" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type DialogTitleProps = React.ComponentPropsWithoutRef & VariantProps; export declare const DialogTitle: ({ className, size, ...props }: DialogTitleProps) => React.JSX.Element; export {};