import { DatabaseService } from "../database/database.service"; export declare class HttpRequestService { private _databaseService; constructor(_databaseService: DatabaseService); /** * Get Http request * @param uri The URI for the request * @param qa The */ get(uri: string, queryParameters?: any): Promise; /** * Post Http request * @param uri The URI for the request * @param body The body for the request */ post(uri: string, body: any): Promise; /** * Builds the get options * @param uri The URI */ private buildGetOptions; /** * Builds the post options * @param uri The URI * @param body The body */ private buildPostOptions; /** * Will get the default headers */ private getDefaultHeaders; }