/// <reference types="react" />
declare type InputProps = React.InputHTMLAttributes<HTMLInputElement> & {
    value: any;
    min: number;
    max: number;
    units?: string;
};
export declare const RangeSlider: ({ value, units, min, max, ...props }: InputProps) => JSX.Element;
export {};
