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