/** * CSS unit for container query width (used with CSS container queries) */ export declare const CQW_UNIT = "cqw"; /** * Default width for the slider text field input */ export declare const DEFAULT_TEXT_FIELD_WIDTH = "3.625rem"; /** * Offset for tick mark positioning to center the tick on the track * Represents half the tick mark width */ export declare const TICK_MARK_OFFSET = "0.0625rem"; /** * Default slider range */ export declare const DEFAULT_RANGE: [number, number]; /** * Default step value */ export declare const DEFAULT_STEP = 1; /** * Helper to create container query width value */ export declare function toCqw(percentage: number): string; /** * Zero percentage in container query width */ export declare const ZERO_CQW: string;