import { InputRangeProps } from '../../common/components/input-range/InputRange'; import { BaseInputFieldProps } from '../../common/types/input'; import { InputHTMLAttributes } from 'react'; export interface SliderProps extends BaseInputFieldProps, Omit { value: InputHTMLAttributes['value']; } /** * controlled * uncontrolled * * The `` component is for selecting a single number within a range (slider).
* It extends the interface of native html `` element. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/6229e1ac5b734b05b551217c) for design principles.
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/range) for further information about the element and related attributes. */ declare const Slider: import("react").ForwardRefExoticComponent>; export default Slider;