import * as cp from'child_process';
/**
* TypeScript typings think ChildProcess is an interface, its a class.
*/exportdeclarefunctionisChildProcess(obj: any): obj is cp.ChildProcess;
exportdeclarefunctionhandleChildProcessPassthrough(childProcess: cp.ChildProcess): Promise<void>;