import { EditorNodeType, BasePlugin, RendererPluginAction, RendererPluginEvent } from 'amis-editor-core'; export declare class CheckboxControlPlugin extends BasePlugin { static id: string; static scene: string[]; rendererName: string; $schema: string; name: string; isBaseComponent: boolean; icon: string; pluginIcon: string; description: string; docLink: string; tags: string[]; scaffold: { type: string; option: string; name: string; label: string; }; previewSchema: any; notRenderFormZone: boolean; panelTitle: string; panelJustify: boolean; events: RendererPluginEvent[]; actions: RendererPluginAction[]; panelBodyCreator: (context: BaseEventContext) => any; buildDataSchemas(node: EditorNodeType, region: EditorNodeType): { type: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"; title: any; originalValue: any; }; }