import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { Observable } from 'rxjs'; import { ApiTestingController } from './api-testing-controller.service'; export declare class ApiTestingInterceptor implements HttpInterceptor { private httpController; constructor(httpController: ApiTestingController); intercept(req: HttpRequest, next: HttpHandler): Observable>; }