import { HTMLInputTypeAttribute } from "react";
import { InputTextPropsType } from "./InputText/interface";
/**
* input 通用类型
*/
export declare type InputCurrencyType = {
type?: HTMLInputTypeAttribute;
validateStatus?: 'success' | 'warning' | 'error' | 'validating';
} & Pick;
export declare type InputPropsType = InputTextPropsType;
export declare type InputDataRef = {
focusState: 'blur' | 'focus';
};