import { ExecutionContext, RequestInterceptor, RequestInterceptorType, TapResponseFrame } from '@iotize/tap/client/api'; import { Observable } from 'rxjs'; export declare class InterceptorChain { private target; interceptors: RequestInterceptor[]; constructor(target: (context: ExecutionContext) => Observable); addInterceptor(interceptor: RequestInterceptorType): this; execute(context: ExecutionContext): Observable; }