import { FabCache, FabCacheValue } from '@fab/core'; export declare class Cache implements FabCache { private cache; constructor(); set(key: string, value: FabCacheValue, ttl_seconds?: number): Promise; setJSON(key: string, value: any, ttl_seconds?: number): Promise; get(key: string): Promise; getJSON(key: string): Promise; getArrayBuffer(key: string): Promise; getNumber(key: string): Promise; getStream(key: string): Promise | undefined>; private readAllIfStream; }