import { RendererPluginAction } from 'amis-editor-core'; export interface ActionLeftPanelTree { actionType?: string; actionLabel?: string; children?: RendererPluginAction | Array; } type ActionPanel = Omit & { label: string; tag: string; }; /** * 注册动作面板插件 * * @param actionPanel */ export declare const registerActionPanel: (actionType: string, actionPanel?: ActionPanel) => void; /** * 注销动作面板插件 * * @param actionType */ export declare const unRegisterActionsPanel: (actionType: string | string[]) => void; export declare const ACTION_TYPE_TREE: (manager: EditorManager) => RendererPluginAction[]; export {};