import { AxiosDefaults, AxiosRequestConfig } from "axios"; import { ServiceConfig } from "../types/service.types"; export declare const mergeGlobalAndServiceConfig: (serviceConfig?: ServiceConfig | undefined, globalServiceConfig?: ServiceConfig | undefined) => ServiceConfig | undefined; export declare const mergeRequestConfig: (axiosDefaults: AxiosDefaults, serviceRequestConfig?: AxiosRequestConfig | undefined, singleRequestConfig?: AxiosRequestConfig | undefined) => AxiosRequestConfig | undefined;