import * as cp from 'child_process'; export interface IExecAsyncResult { stdout: string; stderr: string; } export declare function execAsync(command: string, options?: cp.ExecOptions): Promise;