import { HttpEvent, HttpHandler, HttpHandlerFn, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { Observable } from 'rxjs'; import { CacheService } from '../services/cache-service'; import * as i0 from "@angular/core"; export declare class CachingInterceptor implements HttpInterceptor { private cacheService; constructor(cacheService: CacheService); intercept(req: HttpRequest, next: HttpHandler): Observable>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export declare function cachingInterceptor(req: HttpRequest, next: HttpHandlerFn): Observable>;