import { BaseCon, IConRenderOp, IConRightRenderOp, IConRightRenderItemOp } from './BaseCon'; import { TabsProps } from 'naive-ui'; /** * 标签页 */ export declare class LabelPage extends BaseCon { /** 控件类型 */ static ConType: string; /** 控件名字 */ static ConName: string; /** 单例对象 */ static I: LabelPage; tabs: { key: string; label: string; activate: boolean; childs: BaseCon[]; }[]; activeName: number; tabsProps: TabsProps; getChild(): BaseCon[]; initConfig(configs: any, toCons: any): this; renderRaw({ ctx, formConfig, cons, activateCon, formData }: IConRenderOp): import("vue/jsx-runtime").JSX.Element; getRight(op: IConRightRenderOp): IConRightRenderItemOp[]; }