type HttpRequestType = { hostname: string; path: string; method: string; body: object; }; /** * Creates an HTTP Request to be sent to a REST Access API. * * Supports the Fetch API on Web Browsers and Deno. * Uses the Node HTTP(S) standard libraries for Node. * * @param {String} hostname - Access API Hostname * @param {String} path - Path to the resource on the Access API * @param {String} method - HTTP Method * @param {Object} body - HTTP Request Body * * @returns JSON object response from Access API. */ export declare function httpRequest({ hostname, path, method, body, }: HttpRequestType): Promise; export {};