import { Value } from '../utils/load.js'; export type Cache = Map; /** * Represents a simple key-value cache loaded from a JSON file. * Keys are strings and values can be string, number, or boolean. * * @type {Cache} */ export declare const cache: Cache;