import { cva as OriginalCva, type VariantProps as OriginalVariantProps } from "class-variance-authority"; export type VariantProps any> = OriginalVariantProps & { className: string; }; /** * A wrapper around CVA that uses tailwind-merge to merge the classes. */ export declare const cvaMerge: typeof OriginalCva;