/** * Returns an iterator over the [key, value] entries of the cache. * * @returns {IterableIterator<[string, string | number | boolean]>} Iterator of cache entries */ export declare const entries: () => MapIterator<[string, import('../utils/load.js').Value]>;