import * as React from 'react';
import { type SliderProps } from './Slider.types';
export declare const SLIDER_TEST_ID = "bezier-slider";
/**
* An input component where the user selects a value from within a given range.
* The value of the slider is shown in a tooltip, and in some cases you can add a guide scale.
* @example
*
* ```tsx
* const [value, setValue] = useState([1])
* // Controlled
*
* // Uncontrolled
*
* ```
*/
export declare const Slider: React.ForwardRefExoticComponent>;
//# sourceMappingURL=Slider.d.ts.map