import { ChildProcess } from "child_process"; import * as Process from "process"; import { ITransportConstructor } from "../../model/ITransport"; export declare const processTransport: { getForParentProcess: (child: ChildProcess) => ITransportConstructor; getForChildProcess: (process: typeof Process) => ITransportConstructor; };