import { UIComponent } from './component' /** Form Component */ interface areaItems{ /** * 当前区域ID标识 */ id:number | string /** * 父区域ID标识 */ pid:number | string /** * 名称 */ name:string /** * 级别等级 0-1 or A-Z */ layer:number } export declare class componentArea extends UIComponent { /** * 默认值 | v-model */ value:Array /** * 是否显示工具栏 */ toolbar:boolean /** * 省市区数据 */ list:Array /** * 工具栏取消按钮文案 */ cancelText:string /** * 工具栏确定按钮文案 */ confirmText:string /** * 标题文案 */ title:string }