/** * Class to make HTTP request */ export declare class HTTPConnection { /** * Method to make a GET HTTP Request * @param {string} endpoint URL to make the request * * @returns {Promise} Returns the URL content */ static getRequest(endpoint: string): Promise; static postRequest(endpoint: string, body: string, headers?: { [key: string]: string; }): Promise; }