import { InputProps } from '@easyv/react-components'; import * as React from 'react'; export interface ProInputProps extends Omit { showToolTip?: boolean; name: string; allowEmpty?: boolean; value: string | undefined; hideSuffixWhenInput?: boolean; hidePrefixWhenInput?: boolean; onChange?: (name: string, value: string) => void; onBlur: (name: string, value: string) => void; } export declare const ProInput: React.FC;