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