import * as react from 'react';
import { InputHTMLAttributes } from 'react';
interface SliderProps extends Omit, 'type' | 'onChange'> {
label?: string;
/** Show the current numeric value next to the label */
showValue?: boolean;
onChange?: (value: number) => void;
}
declare const Slider: react.ForwardRefExoticComponent>;
export { Slider, type SliderProps };