declare type CachedKey = string | number; export declare const getCachePromise: (cacheKey: CachedKey) => Promise | undefined; export declare const setCachePromise: (cacheKey: CachedKey, promise: Promise) => void; export {};