import { EditorNodeType, RendererPluginAction, RendererPluginEvent, BasePlugin } from 'amis-editor-core'; export declare class NumberControlPlugin extends BasePlugin { static id: string; rendererName: string; $schema: string; name: string; isBaseComponent: boolean; icon: string; pluginIcon: string; description: string; searchKeywords: string; docLink: string; tags: string[]; scaffold: { type: string; label: string; name: string; showSteps: boolean; keyboard: boolean; kilobitSeparator: boolean; }; previewSchema: any; notRenderFormZone: boolean; panelTitle: string; panelJustify: boolean; events: RendererPluginEvent[]; actions: RendererPluginAction[]; panelBodyCreator: (context: BaseEventContext) => any; buildDataSchemas(node: EditorNodeType, region: EditorNodeType): { type: string; title: any; rawType: any; originalValue: any; }; }