import { Event } from '@vscode-alt/monaco-editor/esm/vs/base/common/event'; import { Disposable } from '@vscode-alt/monaco-editor/esm/vs/base/common/lifecycle'; import { ICommandService, ICommandEvent } from '@workbench-stack/core'; export declare class CommandService extends Disposable implements ICommandService { _serviceBrand: undefined; private _extensionHostIsReady; private _starActivation; private readonly _onWillExecuteCommand; readonly onWillExecuteCommand: Event; private readonly _onDidExecuteCommand; readonly onDidExecuteCommand: Event; constructor(); private _activateStar; executeCommand(id: string, ...args: any[]): Promise; private _tryExecuteCommand; }