export type FieldState = "default" | "error" | "success" | "warning"; /** * Border color by field state / disabled. * Extracted from Input so TextareaInput (and later the Input family) share one source of truth. * State colors only apply when not disabled — same compoundVariants contract Input had. */ export declare const fieldBorderVariants: (props?: ({ state?: "error" | "warning" | "default" | "success" | null | undefined; disabled?: boolean | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export declare const fieldLabelVariants: (props?: ({ state?: "error" | "warning" | "default" | "success" | null | undefined; disabled?: boolean | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string;