import type { AxiosError, AxiosResponse } from 'axios'; import type { IDecoratorInterceptorOptions, IInterceptorResponse, IInterceptorResponseError, NextInterceptorError, NextInterceptorResponse } from 'zova-module-a-fetch'; import { BeanInterceptorBase } from 'zova-module-a-fetch'; export interface IInterceptorOptionsBody extends IDecoratorInterceptorOptions { } export declare class InterceptorBody extends BeanInterceptorBase implements IInterceptorResponse, IInterceptorResponseError { onResponse(response: AxiosResponse, _options: IInterceptorOptionsBody, next: NextInterceptorResponse): Promise; onResponseError(error: AxiosError, _options: IInterceptorOptionsBody, next: NextInterceptorError): Promise; } //# sourceMappingURL=interceptor.body.d.ts.map