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