import React from 'react'; import * as SliderPrimitive from '@radix-ui/react-slider'; export interface SliderThumbProps extends React.ComponentPropsWithoutRef { /** * Thumb value (used for tooltip display; positioning is handled by Radix) */ value: number; /** * Thumb type */ type: 'start' | 'end'; /** * Custom thumb content (when using asChild) */ children?: React.ReactNode; } /** * SliderThumb Component * * A composable component for slider handles/thumbs. * Typically used within Slider. Renders as a Radix Slider.Thumb primitive. * * @public * * @example * ```tsx * * * * * * * ``` * * @remarks * - Wraps Radix UI Slider.Thumb primitive. * - Supports keyboard interaction (arrow keys) via Radix. * - Automatically handles tooltip display on hover/focus. */ export declare const SliderThumb: React.ForwardRefExoticComponent>; //# sourceMappingURL=SliderThumb.d.ts.map