import { type FC } from "react"; import type VibeComponentProps from "../../../types/VibeComponentProps"; import { type SliderColor, type SliderSize } from "../Slider.types"; export interface SliderThumbProps extends VibeComponentProps { /** * The index of the thumb (used in range sliders). */ index?: number; /** * Callback fired when the thumb is moved. */ onMove?: (event: PointerEvent) => void; /** * The position of the thumb, represented as an offset percentage from the start of the track. */ position?: number; /** * The size of the slider thumb. */ size: SliderSize; /** * The color theme of the slider thumb. */ color: SliderColor; } declare const SliderThumb: FC; export default SliderThumb;