/** * html/label — variant-styled primitive. */ import { type LabelHTMLAttributes, type InputHTMLAttributes } from "react"; import { type VariantProps } from "class-variance-authority"; export declare const labelVariants: (props?: ({ variant?: "default" | "description" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type LabelElProps = LabelHTMLAttributes & VariantProps; export declare const LabelEl: import("react").ForwardRefExoticComponent & VariantProps<(props?: ({ variant?: "default" | "description" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string> & import("react").RefAttributes>; /** Inline label for a radio group option — flex row with cursor-pointer. */ export declare const RadioOptionEl: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; /** styled with accent-primary. */ export declare const RadioInputEl: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=label.d.ts.map