/**
 * Present when the field is disabled.
 */
export declare const disabled = "data-disabled";
/**
 * Present when the field is in a valid state.
 */
export declare const valid = "data-valid";
/**
 * Present when the field is in an invalid state.
 */
export declare const invalid = "data-invalid";
/**
 * 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 filled.
 */
export declare const filled = "data-filled";
/**
 * Present when the field control is focused.
 */
export declare const focused = "data-focused";
/**
 * Present when the error message begins animating in.
 */
export declare const startingStyle = "data-starting-style";
/**
 * Present when the error message is animating out.
 */
export declare const endingStyle = "data-ending-style";