/** * Present while the user is dragging. */ export declare const dragging = "data-dragging"; /** * Indicates the orientation of the slider. * @type {'horizontal' | 'vertical'} */ export declare const orientation = "data-orientation"; /** * Present when the slider is disabled. */ export declare const disabled = "data-disabled"; /** * Present when the slider is in a valid state (when wrapped in Field.Root). */ export declare const valid = "data-valid"; /** * Present when the slider is in an invalid state (when wrapped in Field.Root). */ export declare const invalid = "data-invalid"; /** * Present when the slider has been touched (when wrapped in Field.Root). */ export declare const touched = "data-touched"; /** * Present when the slider's value has changed (when wrapped in Field.Root). */ export declare const dirty = "data-dirty"; /** * Present when the slider is focused (when wrapped in Field.Root). */ export declare const focused = "data-focused";