import type { AxiosInstance } from 'axios'; import type { RequestInterceptorConfig, ResponseInterceptorConfig } from '../types'; declare class InterceptorManager { private axiosInstance; constructor(instance: AxiosInstance); addRequestInterceptor({ fulfilled, rejected, }?: RequestInterceptorConfig): void; addResponseInterceptor({ fulfilled, rejected, }?: ResponseInterceptorConfig): void; } export { InterceptorManager };