import React from 'react'; import { InputNumberProps } from 'antd'; import { ProFormOtherProps } from '../../../propsType'; export interface Props extends Omit { otherProps?: ProFormOtherProps; range?: string; onBlur?: (value?: number, record?: any, object?: any) => void; isView?: boolean; } declare const InputNumber: React.FC; export default InputNumber;