import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { Injector } from '@angular/core'; import { Observable } from 'rxjs'; import { IMockConfig, ISafeAny } from './mock.type'; export declare class MockInterceptor implements HttpInterceptor { private injector; config: IMockConfig; constructor(injector: Injector); intercept(req: HttpRequest, next: HttpHandler): Observable>; }