import { RendererPluginAction, RendererPluginEvent, BasePlugin, RegionConfig, PluginEvent, PreventClickEventContext } from 'amis-editor-core'; export declare class CollapsePlugin 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; header: string; body: { type: string; tpl: string; wrapperComponent: string; inline: boolean; id: string; }[]; }; previewSchema: { type: string; header: string; body: { type: string; tpl: string; wrapperComponent: string; inline: boolean; id: string; }[]; }; panelTitle: string; panelJustify: boolean; events: RendererPluginEvent[]; actions: RendererPluginAction[]; panelBodyCreator: (context: BaseEventContext) => any; regions: Array; onPreventClick(e: PluginEvent): false | undefined; }