import { EditorNodeType, BasePlugin, RendererPluginAction, RendererPluginEvent } from 'amis-editor-core'; export declare class ButtonGroupControlPlugin 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; inline: boolean; options: { label: string; value: string; }[]; }; previewSchema: any; notRenderFormZone: boolean; panelTitle: string; events: RendererPluginEvent[]; actions: RendererPluginAction[]; panelJustify: boolean; panelBodyCreator: (context: BaseEventContext) => any; buildDataSchemas(node: EditorNodeType, region: EditorNodeType): any; }