import { NgZone, ModuleWithComponentFactories } from '@angular/core'; export declare class DynamicCache { private memoryCache; constructor(ngZone: NgZone); set(key: string, value: Promise>): void; get(key: string): Promise>; }