import { Observable } from "rxjs"; export declare class CacheHelper { private static _cache; static get(key: string): Observable | undefined; static set(key: string, value: any, minutes?: number): Observable; static getOrCreate(key: string, fallback: Observable, minutes?: number): Observable; }