export declare function memoize(fn: () => T): () => T; /** * drop-in replacement for _.without */ export declare function without(items: T[], item: T): T[]; export declare function union(itemsA: T[], itemsB: T[]): T[];