import { RendererPluginEvent } from 'amis-editor-core'; import { BasePlugin, RegionConfig } from 'amis-editor-core'; export declare class CollapseGroupPlugin extends BasePlugin { static id: string; rendererName: string; useLazyRender: boolean; $schema: string; name: string; isBaseComponent: boolean; description: string; docLink: string; tags: string[]; icon: string; pluginIcon: string; scaffold: { type: string; enableFieldSetStyle: boolean; activeKey: string[]; body: ({ type: string; key: string; active: boolean; header: string; id: string; body: { type: string; tpl: string; wrapperComponent: string; inline: boolean; id: string; }[]; } | { type: string; key: string; header: string; id: string; body: { type: string; tpl: string; wrapperComponent: string; inline: boolean; id: string; }[]; active?: undefined; })[]; }; previewSchema: { type: string; enableFieldSetStyle: boolean; activeKey: string[]; body: ({ type: string; key: string; active: boolean; header: string; id: string; body: { type: string; tpl: string; wrapperComponent: string; inline: boolean; id: string; }[]; } | { type: string; key: string; header: string; id: string; body: { type: string; tpl: string; wrapperComponent: string; inline: boolean; id: string; }[]; active?: undefined; })[]; }; events: RendererPluginEvent[]; activeKeyData: any; panelTitle: string; panelJustify: boolean; panelBodyCreator: (context: BaseEventContext) => any[]; regions: Array; }