///
import * as child_process from 'child_process';
export interface IChildSpawnOptions extends child_process.SpawnOptions {
}
/**
* Execute child processes as promise
* @ignore
*/
export declare class ChildPromise {
static spawn(command: string, args?: string[], options?: IChildSpawnOptions): Promise;
static exec(command: string, options?: child_process.ExecOptions): Promise;
private static _child;
}