import { Interceptor } from '.'; export declare class InterceptorManager { static interceptors: Map; static add(name: string, type: any): void; static get(name: string): Interceptor | undefined; static getAll(): Interceptor[]; static create(interceptors?: string[] | Interceptor[]): Interceptor[]; }