import type { FC, Ref } from 'react'; import { Slider as ArkSlider } from '@ark-ui/react/slider'; type ArkThumbPassThrough = Omit; export interface SliderThumbProps extends ArkThumbPassThrough { /** Which thumb this is (0 = single/low, 1 = high). */ index?: number; /** Show an on-drag value bubble above this thumb (DS Tooltip, opened by drag). */ tooltip?: boolean; className?: string; ref?: Ref; } /** * The draggable handle — the real interactive node (`role="slider"`, focusable). * Consumer `data-*` / `aria-*` / `id` / `ref` / event props forward HERE (per * `docs/metrics/contract.md`); each range thumb carries its own, so a range can attribute * the low and high thumbs independently. */ export declare const SliderThumb: FC; export {};