/** * Cache the result of a callback in map instances. * @link https://js-toolkit.studiometa.dev/utils/cache.html */ export declare function cache(keys: any | any[], callback: () => T): T;