import { AxiosError, AxiosRequestConfig } from "axios";
type axiosConfigOptions = {
    contantType?: "application/json" | "application/json; odata=nometadata" | "application/xml";
};
export declare function getAxiosConfigBearer(token: string, options?: axiosConfigOptions): AxiosRequestConfig<any>;
export declare function getAxiosConfig(token?: string, options?: axiosConfigOptions): AxiosRequestConfig<any>;
export declare function getAxiosErrorData(error: AxiosError): {
    code: string;
    message: string;
};
export {};
