export { default as throttle } from "lodash.throttle"; export { default as debounce } from "lodash.debounce"; type FN = (arg: T) => R; /** * Memoize a function * * memoized function will cache the result of the function call * * @param func function to memoize * @returns memoized function */ export declare function memoize(func: FN): FN;