import { HttpEvent, HttpInterceptor, HttpHandler, HttpRequest } from '@angular/common/http'; import { Observable } from 'rxjs'; import { Auth } from '../auth_with_observable'; export declare class AuthzErrorInterceptor implements HttpInterceptor { private auth; private postLogoutAction?; constructor(auth: Auth, postLogoutAction?: () => void); intercept(request: HttpRequest, next: HttpHandler): Observable>; }