import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from "@angular/common/http"; import { Observable } from "rxjs"; import { ExceptionMessageService } from "./exception-message.service"; import { ModalService } from "./modal.service"; export declare class ErrorInterceptorService implements HttpInterceptor { private _modalService; private _messageService; static ErrorMessageWindowName: string; constructor(_modalService: ModalService, _messageService: ExceptionMessageService); intercept(req: HttpRequest, next: HttpHandler): Observable>; }