import { Cache } from "./types"; export declare function getCacheItem(cache: Cache, key: string): T | null; export declare function setCacheItem(cache: Cache, key: string, data: T, ttlMs: number): Cache;