import { ActiveEventContext, LayoutBasePlugin, RegionConfig, PluginEvent, ResizeMoveEventContext, RendererPluginEvent } from 'amis-editor-core'; export declare class ContainerPlugin extends LayoutBasePlugin { static id: string; static scene: string[]; rendererName: string; useLazyRender: boolean; $schema: string; name: string; isBaseComponent: boolean; description: string; docLink: string; tags: string[]; order: number; icon: string; pluginIcon: string; scaffold: { type: string; body: never[]; style: { position: string; display: string; inset: string; flexWrap: string; flexDirection: string; alignItems: string; }; size: string; wrapperBody: boolean; }; previewSchema: { type: string; body: never[]; style: { position: string; display: string; inset: string; flexWrap: string; flexDirection: string; alignItems: string; }; size: string; wrapperBody: boolean; }; regions: Array; panelTitle: string; panelJustify: boolean; events: RendererPluginEvent[]; onActive(event: PluginEvent): void; onWidthChangeStart(event: PluginEvent): void; panelBodyCreator: (context: BaseEventContext) => any; }