/// import { IncomingMessage } from 'http'; /** * Async wrapper for making HTTP GET requests * @param urlString */ export declare function httpGetAsync(urlString: string): Promise; /** * Async wrapper for making HTTPS GET requests * @param urlString */ export declare function httpsGetAsync(urlString: string): Promise;