/** 输入框类型 */
export declare type InputType = "text" | "password";
/** 输入框尺寸，迷你、小型、普通、大型 */
export declare type InputSize = "mini" | "small" | "normal" | "large";
