/// <reference types="node" />
import { ChildProcess } from 'child_process';
import { ChildProcessSpawn } from '../interfaces/child-process-spawn';
import { SpawnOptions2 } from '../custom-typings';
export declare class ChildProcessSpawnImpl implements ChildProcessSpawn {
    spawn(command: string, args?: string[], options?: SpawnOptions2): ChildProcess;
}
