import * as React from 'react'; import * as SliderPrimitive from '@radix-ui/react-slider'; /** * Draggable range input for numeric value selection. * * @description * Built on Radix UI Slider with robust mobile touch support. * Supports single thumb and dual-thumb range selection. * * @ai-rules * 1. Pass the initial value as a numeric array: `defaultValue={[50]}` — NOT `defaultValue={50}`. * 2. For dual-thumb range selectors, pass two values: `defaultValue={[20, 80]}`. * 3. Connect to React Hook Form via `onValueChange` — the callback receives `number[]`. */ declare const Slider: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { Slider };