import { HttpInterceptor, HttpEvent, HttpRequest, HttpHandler } from '@angular/common/http'; import { Subject, Observable } from 'rxjs'; import * as i0 from '@angular/core'; declare class IcedCacheService { cache: Record>>; has(key: string): boolean; get(key: string): Subject>; set(key: string, value: Subject>): void; removeAfter(key: string, ms?: number): void; remove(key: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } declare class ThrottleInterceptor implements HttpInterceptor { private cache; constructor(cache: IcedCacheService); intercept(req: HttpRequest, next: HttpHandler): Observable>; protected test(req: HttpRequest): boolean; private buildKey; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export { ThrottleInterceptor };