/** * Value type used by the input-range component (array of stringified numbers). */ export type InputRangeValueType = string[]; /** * Index position for a range input when handling two-thumb sliders. */ export type RangeInputIndexType = 0 | 1; /** * Orientation options for stacked input-range elements. */ export type InputRangeStackType = 'vertical' | 'horizontal';