import { InputSize, InputState } from './types'; export declare const containerVariants: (props?: ({ size?: "small" | "medium" | "large" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; /** Size / radius / padding only — border color lives in fieldBorderVariants. */ export declare const contentContainerVariants: (props?: ({ size?: "small" | "medium" | "large" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export declare const inputFieldVariants: (props?: ({ size?: "small" | "medium" | "large" | null | undefined; disabled?: boolean | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; /** @deprecated Prefer fieldLabelVariants from Shared/fieldVariants — reexport for existing imports. */ export declare const labelVariants: (props?: ({ state?: "error" | "warning" | "default" | "success" | null | undefined; disabled?: boolean | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export declare const iconVariants: (props?: ({ state?: "error" | "warning" | "default" | "success" | null | undefined; disabled?: boolean | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export declare const iconSizeMap: Record; export declare const supportingTextStateMap: Record;