import { AxiosInstance } from "axios";
import { Config } from "./config";
export interface HttpClient extends AxiosInstance {
}
export declare const getHttpClient: (config: Config) => HttpClient;
