import { HttpBackend, HttpHandler, HttpInterceptor, RequestContext } from '#types/http-interceptor.js'; /** * An injectable service that ties multiple interceptors in chain. */ export declare class ChainMaker { private backend; private interceptors; constructor(backend: HttpBackend, interceptors?: HttpInterceptor[]); makeChain(ctx: RequestContext): HttpHandler; } //# sourceMappingURL=chain-maker.d.ts.map