/** * 按钮类型 */ export declare type ButtonType = 'default' | 'primary' | 'warn'; /** * 文本框类型 */ export declare type InputType = 'text' | 'email' | 'password' | 'number' | 'tel' | 'range' | 'textarea' | 'select' | 'radio' | 'checkbox' | 'url'; /** * 文本框数据项 */ export interface InputData { text: string; [key: string]: any; } /** * 样式类型 */ export declare type SkinType = 'ios' | 'android' | 'auto'; /** * 已经实现的动画效果 */ export declare type AnimateType = 'none' | 'slide';