/** * Memoizes a function. * @name memoize(f: F): F */ export declare const memoize: (f: F) => F;