import { TokenService } from "./token.service"; import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from "@angular/common/http"; import { Observable } from "rxjs/internal/Observable"; import { ConfigService } from "../../services/config.service"; export declare class AuthHttpInterceptor implements HttpInterceptor { private _configService; private _tokenService; constructor(_configService: ConfigService, _tokenService: TokenService); intercept(req: HttpRequest, next: HttpHandler): Observable>; }