/** * Memoizes the provided one-argument function. * * @internal */ export declare function memoize1(fn: (a1: A1) => R): (a1: A1) => R;