import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { Observable } from 'rxjs'; import { NacoService } from '../domains/services/naco.service'; export declare class AuthInterceptor implements HttpInterceptor { private naco; constructor(naco: NacoService); intercept(req: HttpRequest, next: HttpHandler): Observable>; }