import type { Memoized } from './types.js'; interface Options { getInstanceId?: () => string; } /** * @name memoize * @description Memomize the function with a specific instanceId */ export declare function memoize T>(fn: F, { getInstanceId }?: Options): Memoized; export {};