import { BaseEventContext, BasePlugin, ContextMenuEventContext, ContextMenuItem, PluginEvent, ResizeMoveEventContext, RendererJSONSchemaResolveEventContext, VRendererConfig } from 'amis-editor-core'; import { EditorNodeType } from 'amis-editor-core'; export declare class GridPlugin extends BasePlugin { static id: string; static scene: string[]; rendererName: string; useLazyRender: boolean; $schema: string; name: string; isBaseComponent: boolean; description: string; searchKeywords: string; docLink: string; tags: string[]; order: number; icon: string; pluginIcon: string; scaffold: { type: string; columns: { body: never[]; }[]; }; previewSchema: { type: string; columns: { body: { type: string; tpl: string; inline: boolean; wrapperComponent: string; className: string; }[]; }[]; }; panelTitle: string; panelWithOutOthers: boolean; panelBodyCreator(context: BaseEventContext): any[]; vRendererConfig: VRendererConfig; vWrapperResolve: (dom: HTMLElement) => HTMLElement; overrides: { renderColumn: (this: any, node: Schema, index: number, length: number) => any; }; afterResolveJsonSchema(event: PluginEvent): void; buildEditorContextMenu(context: ContextMenuEventContext, menus: Array): void; onWidthChangeStart(event: PluginEvent): void; insertRowAfter(node: EditorNodeType): void; insertRowBefore(node: EditorNodeType): void; insertColumnBefore(context: BaseEventContext): void; insertColumnAfter(context: BaseEventContext): void; }