/** * Cache decorator that handles multiple parameters using JSON serialization * Multi-Parameter JSON-Serialized Version * @template T The return type of the cached function * @template Args The argument types of the cached function * @param fn Function to cache * @returns Cached version of the function */ export declare const cacheJSON: (fn: (this: unknown, ...args: Args) => T) => (...args: Args) => T; export { }