/**
 * Present when the input is disabled.
 */
export declare const disabled = "data-disabled";
/**
 * Present when the input is in a valid state (when wrapped in Field.Root).
 */
export declare const valid = "data-valid";
/**
 * Present when the input is in an invalid state (when wrapped in Field.Root).
 */
export declare const invalid = "data-invalid";
/**
 * Present when the input has been touched (when wrapped in Field.Root).
 */
export declare const touched = "data-touched";
/**
 * Present when the input's value has changed (when wrapped in Field.Root).
 */
export declare const dirty = "data-dirty";
/**
 * Present when the input is filled (when wrapped in Field.Root).
 */
export declare const filled = "data-filled";
/**
 * Present when the input is focused (when wrapped in Field.Root).
 */
export declare const focused = "data-focused";