import type { IHttpClient, IHttpClientRequestParameters } from './types'; declare class HttpClient implements IHttpClient { get(params: IHttpClientRequestParameters): Promise; } export declare const httpClient: HttpClient; export {};