import { Event } from "../../../base/common/event.js"; import { ICommandEvent } from "./commands.js"; export declare const ICommandService: import("../../instantiation/common/instantiation.js").ServiceIdentifier; export interface ICommandService { readonly _serviceBrand: undefined; readonly onWillExecuteCommand: Event; readonly onDidExecuteCommand: Event; executeCommand(commandId: string, ...args: unknown[]): Promise; }