/** * Memoizes the provided two-argument function. * * @internal */ export declare function memoize2(fn: (a1: A1, a2: A2) => R): (a1: A1, a2: A2) => R;