export declare function getCachedValue(key: string): string | null; export interface IOptions { expireInMs: number; } export declare function updateCacheValue(key: string, value: string, options: IOptions): void;