/**
 * Present when all slots are filled.
 */
export declare const complete = "data-complete";
/**
 * Present when the input contains a character.
 */
export declare const filled = "data-filled";
/**
 * Present when the OTP field is disabled.
 */
export declare const disabled = "data-disabled";
/**
 * Present when the OTP field is readonly.
 */
export declare const readonly = "data-readonly";
/**
 * Present when the OTP field is required.
 */
export declare const required = "data-required";
/**
 * Present when the OTP field is in a valid state (when wrapped in Field.Root).
 */
export declare const valid = "data-valid";
/**
 * Present when the OTP field is in an invalid state (when wrapped in Field.Root).
 */
export declare const invalid = "data-invalid";
/**
 * Present when the OTP field has been touched (when wrapped in Field.Root).
 */
export declare const touched = "data-touched";
/**
 * Present when the OTP field's value has changed (when wrapped in Field.Root).
 */
export declare const dirty = "data-dirty";
/**
 * Present when any OTP field input is focused.
 */
export declare const focused = "data-focused";