import { BasePlugin, BasicPanelItem, RegionConfig, BuildPanelEventContext } from 'amis-editor-core'; import { InlineEditableElement } from 'amis-editor-core'; export declare class PanelPlugin extends BasePlugin { static id: string; rendererName: string; useLazyRender: boolean; $schema: string; name: string; isBaseComponent: boolean; icon: string; pluginIcon: string; description: string; docLink: string; tags: string[]; scaffold: { type: string; title: string; body: string; }; previewSchema: { type: string; title: string; body: string; className: string; actions: { label: string; type: string; }[]; }; regions: Array; inlineEditableElements: Array; panelTitle: string; panelJustify: boolean; panelBodyCreator: (context: BaseEventContext) => any[]; buildEditorPanel(context: BuildPanelEventContext, panels: Array): void; }