import type { Memoized } from './types'; interface Options { getInstanceId?: () => string; } export declare function memoize T>(fn: F, { getInstanceId }?: Options): Memoized; export {};