import { EditorNodeType, BasePlugin } from 'amis-editor-core'; export declare class TextControlPlugin extends BasePlugin { static id: string; static scene: string[]; rendererName: string; $schema: string; order: number; searchKeywords: string; name: string; isBaseComponent: boolean; icon: string; pluginIcon: string; description: string; docLink: string; tags: string[]; scaffold: { type: string; label: string; name: string; }; previewSchema: any; notRenderFormZone: boolean; panelTitle: string; events: { eventName: string; eventLabel: string; description: string; dataSchema: (manager: EditorManager) => { type: string; properties: { data: { type: string; title: string; properties: { value: any; }; }; }; }[]; }[]; actions: any[]; panelJustify: boolean; panelBodyCreator: (context: BaseEventContext) => any; buildDataSchemas(node: EditorNodeType, region: EditorNodeType): any; }