import { AxiosError, AxiosInstance, AxiosRequestConfig, AxiosRequestHeaders, AxiosResponse } from "axios";
declare const loadJsmHttpClient: (config: {
    security: {
        internalServiceSecret: string;
    };
    currentService: {
        name: string;
    };
}) => AxiosInstance | undefined;
export type { AxiosError, AxiosRequestConfig, AxiosRequestHeaders, AxiosResponse, };
export default loadJsmHttpClient;
