import * as React from "react"; import { type VariantProps } from "../../utils.js"; declare const cardTitleVariants: (props?: ({ padding?: "sm" | "md" | "lg" | null | undefined; size?: "sm" | "md" | null | undefined; variant?: "accent" | "default" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type CardTitleProps = React.HTMLAttributes & VariantProps; export declare const CardTitle: ({ className, padding, size, variant, ...props }: CardTitleProps) => React.JSX.Element; export {};