import React from 'react'; import * as SliderPrimitive from '@radix-ui/react-slider'; export interface SliderTrackProps extends React.ComponentPropsWithoutRef { /** * Track content (typically SliderRange). */ children?: React.ReactNode; /** * @deprecated Use asChild on the parent Slider instead. Kept for API compatibility. */ asChild?: boolean; } /** * SliderTrack Component * * A composable component for the rail/background track of a Slider. * Typically wraps SliderRange. Renders as a Radix Slider.Track primitive. * * @public * * @example * ```tsx * * * * * * * ``` * * @remarks * - Wraps Radix UI Slider.Track primitive. * - Automatically styled based on vertical/horizontal orientation. */ export declare const SliderTrack: React.ForwardRefExoticComponent>; //# sourceMappingURL=SliderTrack.d.ts.map