import axios, { type AxiosRequestConfig } from "axios";
import { CreateHttpInterceptor } from "./httpInterceptor";
export declare class HttpClient extends axios.Axios {
    config: AxiosRequestConfig;
    CreateHttpInterceptor: CreateHttpInterceptor;
    constructor(config: AxiosRequestConfig, CreateHttpInterceptor: CreateHttpInterceptor);
}
