import { FC } from 'react'; import { SliderBaseHiddenInputProps } from '../../../SliderBase'; export type RangeSliderHiddenInputProps = SliderBaseHiddenInputProps; /** * RangeSliderHiddenInput * * A visually hidden native `` used to connect an individual * `RangeSlider` thumb with native form behavior and accessibility features. * * Purpose: * - Provides a form-associated control for each slider thumb * - Enables native form submission */ export declare const RangeSliderHiddenInput: FC;