import { UIComponent } from './component' /** Form Component */ export declare class componentTabs extends UIComponent { /** * 选中下标 */ value:string /** * 选项数据 */ tabs:Array | Array<{name:string,value:any}> /** * 选中字体颜色 */ activeColor:string /** * 字体默认颜色 */ color:string /** * 选中下标背景颜色 */ activeBackground:string /** * 字体大小 */ size:number }