import { Got } from "got";
import { ApiResponse } from "../@types/types";
declare const httpClient: Got;
export declare const setApiKey: (apiKey: string) => void;
export declare const makeHttpCall: <T>(url: string, loaderString?: string) => Promise<ApiResponse<T>>;
export declare const makeHttpCalls: <T>(urls: string[], loaderString?: string) => Promise<ApiResponse<T>[]>;
export default httpClient;
