Version: 0.1.00.1.10.2.00.3.00.3.10.3.20.3.30.4.00.4.10.5.00.5.10.5.20.5.30.5.40.6.00.7.00.8.00.9.00.10.00.10.10.10.20.10.30.10.40.10.50.10.60.10.70.10.80.10.90.10.100.10.110.11.00.11.10.11.20.11.30.11.40.11.50.12.00.12.10.12.20.13.00.14.00.14.10.15.00.15.10.15.21.0.01.0.11.0.21.0.31.0.41.0.51.0.61.0.71.1.01.2.01.2.11.2.21.2.31.2.41.2.51.2.61.2.71.2.81.2.91.2.101.2.111.3.01.4.01.5.01.6.01.6.11.6.21.6.31.7.01.7.11.7.21.7.31.7.41.7.51.8.01.8.11.9.01.9.11.9.21.9.31.9.41.9.51.10.01.10.11.10.21.10.32.0.02.0.12.0.23.0.03.0.13.1.03.1.13.1.23.1.33.1.43.1.53.1.63.1.73.1.83.2.03.2.13.2.23.2.33.2.43.2.53.2.63.2.73.2.83.2.93.2.103.2.113.2.123.3.03.3.13.4.03.4.13.4.23.4.33.4.44.0.0-alpha.14.0.0-alpha.24.0.0-alpha.34.0.0-alpha.44.0.0-alpha.54.0.0-alpha.64.0.0-alpha.74.0.0-alpha.84.0.0-alpha.94.0.0-alpha.104.0.0-alpha.114.0.0-alpha.124.0.0-alpha.134.0.0-alpha.144.0.0-alpha.154.0.0-alpha.164.0.0-alpha.174.0.0-alpha.184.0.0-alpha.194.0.0-alpha.204.0.0-alpha.214.0.0-alpha.224.0.0-alpha.234.0.0-alpha.244.0.04.0.14.1.04.1.14.1.25.0.05.0.15.0.25.0.35.0.45.0.55.0.65.0.75.0.85.0.95.0.106.0.06.1.06.1.16.1.26.1.36.1.46.1.57.0.07.0.17.0.27.0.37.0.47.0.57.0.67.0.77.0.8
/// <reference types="node" />
import http, { IncomingMessage } from 'http';
import https from 'https';
/**
* Async wrapper for making HTTP GET requests
* @param urlString
*/
export declare function httpGetAsync(urlString: string, agent?: http.Agent): Promise<IncomingMessage>;
* Async wrapper for making HTTPS GET requests
export declare function httpsGetAsync(urlString: string, agent?: https.Agent): Promise<IncomingMessage>;