import { QueryParams } from '../models/http/params'; import { HttpService } from '../services/HttpService'; /** * HttpServiceImpl is a wrapper around the native implementation of AJAX * related matters. */ export declare class HttpServiceImpl implements HttpService { /** * Perform a GET request */ get(url: string, queryParams: QueryParams, clientSdk: Record, authToken?: string): Promise; /** * Perform a POST request */ post(url: string, queryParams: QueryParams, body: QueryParams, clientSdk: Record, authToken?: string): Promise; }