import { BaseCon, IConRenderOp, IConRightRenderOp, IConRightRenderItemOp } from './BaseCon'; import { CollapseProps } from 'naive-ui'; /** * 折叠面板 */ export declare class Collapse extends BaseCon { /** 控件类型 */ static ConType: string; /** 控件名字 */ static ConName: string; /** 单例对象 */ static I: Collapse; collapses: { key: string; title: string; childs: BaseCon[]; }[]; activeNames: number[]; collapseProps: CollapseProps; 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[]; }