import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http'; import { Observable } from 'rxjs'; import { IForRootConf } from '../interfaces/interfaces'; import { IpUserInterfaceService } from '../services/internals/user-interfaces/user-interface.service'; export declare class IpInterceptorInterceptor implements HttpInterceptor { private userConfig; private userInterface; constructor(userConfig: IForRootConf, userInterface: IpUserInterfaceService); intercept(request: HttpRequest, next: HttpHandler): Observable>; }