import React from 'react'; import './index.less'; interface RangeInputNumberPropsType { placeholder?: any; onChange: (e: any) => void; initialValue?: string; propsKey?: string; readOnly?: boolean; min?: number; max?: number; selectedComp?: any; unit?: any; value?: any; } declare const RangeInputNumber: React.FC; export default RangeInputNumber;