import { INgRunner as ICommandRunner } from "./ng-runner.interface"; import { INgRunResult } from "./ng-run-result.interface"; export declare class CommandRunner implements ICommandRunner { run(command: string): Promise; run(command: string, location?: any): Promise; }