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