import type { AxiosInstance } from 'axios'; import type { LoadingOptions } from '@ace-fetch/core'; export declare const StopLoadingFnSymbol = "__StopLoading__"; export declare const ResponseFinishedSymbol = "__LoadingResponseFinished__"; /** * use axios.interceptors to register loading function. * do not change the return type from interceptors * with "AxiosResponse" ans "AxiosError", next handler functions need it * @param axiosInstance axios instance * @param options loading options */ export declare function applyLoading(axiosInstance: AxiosInstance, options: LoadingOptions): void;