import type * as Pinnacle from "../index.mjs"; /** * Slider input. `min`/`max` define the bounds, `step` the granularity. */ export interface RangeField extends Pinnacle.FieldBase { /** Lower bound of the slider. */ min?: number; /** Upper bound of the slider. */ max?: number; /** Increment between adjacent slider stops. */ step?: number; }