import type { AxiosInstance } from 'axios';
declare class AxiosClient {
    private static instances;
    private axiosInstance;
    private constructor();
    static getInstance(baseURL: string): AxiosInstance;
}
export default AxiosClient;
