/** * Creates a memoized version of a function. * * @param fn - Function to memoize * @param resolver - Optional cache key resolver. If omitted, the first argument is used as the cache key. * @returns Memoized function with a mutable `.cache` map (compatible with lodash-style cache resets in tests). */ export declare function memoize any>(fn: Fn, resolver?: (...args: Parameters) => unknown): Fn & { cache: Map>; }; //# sourceMappingURL=memoize.d.ts.map