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