import * as Promise from 'bluebird';
export declare class ExecResult {
    error: Error;
    exitCode: number;
    stdout: string;
    stderr: string;
}
export declare function exec(commandName: string, cmdLineArgs: string[], cwd?: string): Promise<ExecResult>;
