export declare function findNextPort(port: number): Promise; export declare function downloadFile(url: string, dest: string, cb: any): void; declare enum Protocols { http = "http", https = "https" } export declare function httpGetRequest(protocol: Protocols, url: string, callback: (err: Error | null, body?: string) => any): void; export declare function httpGet(url: string, callback: any): void; export declare function httpsGet(url: string, callback: any): void; export declare function httpGetJson(url: string, callback: any): void; export declare function httpsGetJson(url: string, callback: any): void; export declare function getJson(url: string, cb: any): void; export declare function pingEndpoint(host: string, port: number, type: string, protocol: string, origin: string, callback: any): void; export {}; //# sourceMappingURL=network.d.ts.map