import { FC, PropsWithChildren } from 'react'; import { SliderBaseProgressProps } from '../../../SliderBase'; export type RangeSliderRangeProps = SliderBaseProgressProps; /** RangeSliderProgress is the filled part of a range slider track that spans between two thumbs. * It visually highlights the selected range, helping users understand the active portion between min and max. */ export declare const RangeSliderProgress: FC>;