import { UIComponent } from './component' /** Form Component */ export declare class componentPicker extends UIComponent { /** * 默认值 | v-model */ value:string /** * 是否显示工具栏 */ toolbar:boolean /** * 选择数据 */ list:Array /** * 工具栏取消按钮文案 */ cancelText:string /** * 工具栏确定按钮文案 */ confirmText:string /** * 标题文案 */ title:string }