/** * @type {Symbol} */ import { Eq } from 'fp-ts/lib/Eq'; export declare const MEMOIZE_CLEAR_FUNCTION: symbol; /** * Memoizes function for passed arguments */ export declare function memoize(this: any, fn: F): F; export default memoize; export declare const memoOnce: (E: Eq) => (f: (...args: Args) => R) => (...args: Args) => R;