import type { AxiosInstance } from "axios"; export declare const ConcurrencyManager: (axios: AxiosInstance, MAX_CONCURRENT?: number) => { queue: any[]; running: never[]; shiftInitial: () => void; push: (reqHandler: any) => void; shift: () => void; requestHandler: (req: any) => Promise; responseHandler: (res: any) => any; responseErrorHandler: (res: any) => Promise; interceptors: { request: null; response: null; }; detach: () => void; }; //# sourceMappingURL=concurrency.d.ts.map