/// import { Socket } from 'net'; /** * Generates a candidate port range, based on a start port number and target port count. * @ignore */ export declare const getCandidatePortRange: (startPort: number, portCount: number) => number[]; /** * Finds an open port from a range of potential ports. * @ignore */ export declare const findOpenPort: (ports: number[]) => Promise; /** * Traps socket events that */ export declare const socketTrap: (socket: Socket) => void; //# sourceMappingURL=network.d.ts.map