import { Injector } from '@angular/core'; import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { Observable } from 'rxjs'; import { NbAuthService } from '../auth.service'; export declare class NbAuthSimpleInterceptor implements HttpInterceptor { private injector; protected headerName: string; constructor(injector: Injector, headerName?: string); intercept(req: HttpRequest, next: HttpHandler): Observable>; protected get authService(): NbAuthService; }