import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; /** * @description HttpInterceptor that adds authorization to any request's header. * * @note for Plugin developers: * To authorize yourself to the plentymarkets backend while development you need to store your accessToken in the localStorage using * `localStorage.setItem('accessToken', )`. This should be done before sending the first request - ideally during the boot of * your application. */ export declare class AuthInterceptor implements HttpInterceptor { intercept(req: HttpRequest, next: HttpHandler): Observable>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }