import { FC } from 'react'; import { SliderBaseThumbProps } from '../../../SliderBase'; export interface RangeSliderThumbProps extends SliderBaseThumbProps { /** * Index of the thumb: 0 for the left (start), 1 for the right (end). * Used to determine which part of the range this thumb controls. */ index: 0 | 1; } /** RangeSliderThumb is one of the two draggable handles in a range slider. * It lets users adjust either the start or end of the selected value range. * Each thumb moves independently within allowed limits and updates the range as it's dragged. */ export declare const RangeSliderThumb: FC;