import * as React from 'react'; import { CommonProps } from '../../'; import * as types from '../../types'; export interface RangeInputProps extends CommonProps { className: string; defaultSelected: types.range; innerClass: types.style; onValueChange: (...args: any[]) => any; range: types.range; stepValue: number; style: types.style; themePreset: types.themePreset; } declare const RangeInput: React.ComponentType; export default RangeInput;