import { SessaoService } from '../../sessao/sessao.service'; import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { InjectionToken } from '@angular/core'; import { Observable } from 'rxjs'; export declare const SEGURANCA_CONFIGURATION: InjectionToken; export interface SegurancaConfiguration { baseURl: string; tipoDispositivo: string; tokenStorageName?: string; } export declare class CredentialsInterceptor implements HttpInterceptor { private sessao; private config; constructor(sessao: SessaoService, config: SegurancaConfiguration); intercept(req: HttpRequest, next: HttpHandler): Observable>; }