declare function initCache(): void; declare function getCache(key?: string): any; declare function updateCache(key: string, value: unknown): void; declare let cache: { init: typeof initCache; get: typeof getCache; update: typeof updateCache; }; export default cache;