import type { FC, Ref } from 'react'; export interface SliderValueProps { /** Show one thumb's value (range). Omit to show all (single → "50", range → "20 – 80"). */ index?: number; className?: string; /** Ref to the readout ``. */ ref?: Ref; } /** * Live value readout for the value-beside-label pattern. Ordinal scales show the mark * label instead of the number. Mutually exclusive with the on-drag `tooltip` — show the * value one way, never both. */ export declare const SliderValue: FC;