/**
 * Present when the field is disabled.
 */
export declare const disabled = "data-disabled";
/**
 * Present when the field has been touched.
 */
export declare const touched = "data-touched";
/**
 * Present when the field's value has changed.
 */
export declare const dirty = "data-dirty";
/**
 * Present when the field is valid.
 */
export declare const valid = "data-valid";
/**
 * Present when the field is invalid.
 */
export declare const invalid = "data-invalid";
/**
 * Present when the field is filled.
 */
export declare const filled = "data-filled";
/**
 * Present when the field control is focused.
 */
export declare const focused = "data-focused";