import { FC, PropsWithChildren } from 'react'; import { SliderBaseProgressProps } from '../../../SliderBase'; export type SliderProgressProps = SliderBaseProgressProps; /** SliderProgress is a visual element that shows the filled portion of the slider track. * It extends from the minimum value to the current value (or between two thumbs in range mode), * helping users see how much of the range is selected. */ export declare const SliderProgress: FC>;