declare const memoize = ( limit?: number, equals?: (a: any, b: any) => boolean, deepObjects?: boolean ) => (func: T) => T; export default memoize;