import { RawResponse } from "../models/http/RawResponse"; import { QueryParams } from "../models/http/params"; /** * A service for HTTP Requests. * * @internal */ export interface HttpService { post>(url: string, queryParams: QueryParams, body: K, apiKey: string): Promise; } /** * A concrete implementation of the HttpService interface * * @internal */ export declare class HttpServiceImpl implements HttpService { /** * Performs a POST request. */ post>(url: string, queryParams: QueryParams, body: K, apiKey: string): Promise; }