/// /** * The Slider is used to allow users to make selections from a range of values. * Sliders reflect a range of values along a bar, from which users may select a single value. They are ideal for adjusting settings such as volume, brightness, or applying image filters. * Chakra UI export 4 components for Slider: * Slider: The wrapper that provides context and functionality for all children. * SliderTrack: The empty part of the slider that shows the track. * SliderFilledTrack: The filled part of the slider. * SliderThumb: The handle that's used to change the slider value. */ export declare function Slider({ ...props }: any): JSX.Element; export declare function SliderTrack({ ...props }: any): JSX.Element; export declare function SliderFilledTrack({ ...props }: any): JSX.Element; export declare function SliderThumb({ ...props }: any): JSX.Element; //# sourceMappingURL=Slider.d.ts.map