import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { Observable } from 'rxjs'; import { AuthenticationService } from '../authentication.service'; export declare class CSRFInterceptor implements HttpInterceptor { private authenticationService; constructor(authenticationService: AuthenticationService); intercept(request: HttpRequest, next: HttpHandler): Observable>; }