import * as cp from 'child_process'; /** * TypeScript typings think ChildProcess is an interface, its a class. */ export declare function isChildProcess(obj: any): obj is cp.ChildProcess; export declare function handleChildProcessPassthrough(childProcess: cp.ChildProcess): Promise;