import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { Observable } from 'rxjs'; import { Context } from '../context/context.service'; export declare class Interceptor implements HttpInterceptor { private context; constructor(context: Context); intercept(req: HttpRequest, next: HttpHandler): Observable>; private isSameOrigin; private convertAllPropertiesToString; }