import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http'; import { CookieService } from 'ngx-cookie-service'; import { Observable } from 'rxjs'; export declare class JwtInterceptor implements HttpInterceptor { private cookieService; constructor(cookieService: CookieService); intercept(request: HttpRequest, next: HttpHandler): Observable>; }