/** * Searchbox * @cloud */ export interface SearchboxProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 搜索框中默认文本 */ placeholder: string; /** * 搜索框icon图片地址 */ iconUrl: string; /** * 搜索按钮文本 */ btnText: string; }