import { IRunCommandExecutionService } from '../common/runCommandExecutionService';
export class MockRunCommandExecutionService implements IRunCommandExecutionService {
declare readonly _serviceBrand: undefined;
async executeCommand(command: string, ...args: any[]): Promise<any> {
}
updateContextValues(): void {
}
}