import React from 'react'; import * as SliderPrimitive from '@radix-ui/react-slider'; export interface SliderRangeProps extends React.ComponentPropsWithoutRef { /** * Range content (optional). */ children?: React.ReactNode; /** * @deprecated Use asChild on the parent Slider instead. Kept for API compatibility. */ asChild?: boolean; } /** * SliderRange Component * * A composable component for the filled portion of a Slider track. * Typically used within SliderTrack. Renders as a Radix Slider.Range primitive. * * @public * * @example * ```tsx * * * * ``` * * @remarks * - Wraps Radix UI Slider.Range primitive. * - Automatically styled and positioned based on slider value and range mode. */ export declare const SliderRange: React.ForwardRefExoticComponent>; //# sourceMappingURL=SliderRange.d.ts.map