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