import { BaseEventContext, BasePlugin, BasicToolbarItem, ContextMenuEventContext, ContextMenuItem, EditorNodeType } from 'amis-editor-core'; export declare class SubFormControlPlugin extends BasePlugin { static id: string; rendererName: string; $schema: string; name: string; isBaseComponent: boolean; icon: string; pluginIcon: string; description: string; docLink: string; tags: string[]; scaffold: { type: string; name: string; label: string; form: { title: string; body: { type: string; label: string; id: string; name: string; }[]; }; }; previewSchema: any; panelTitle: string; panelBodyCreator: (context: BaseEventContext) => SchemaCollection; filterProps(props: any, node: EditorNodeType): any; buildEditorToolbar({ id, info }: BaseEventContext, toolbars: Array): void; buildEditorContextMenu({ id, schema, region, info }: ContextMenuEventContext, menus: Array): void; editDetail(id: string): void; buildDataSchemas(node: EditorNodeType, region: EditorNodeType, trigger?: EditorNodeType): Promise; }