/** * Memoize a function * @param fn - The function to memoize * @param defaultKey - The default key to use if no key is provided * @return Memoized function */ export declare function memoize(fn: (...args: any[]) => any, defaultKey?: string): (...args: any[]) => any; //# sourceMappingURL=memoize.util.d.ts.map