export declare function reduce<T, U>(collection: T[], iteratee: (accumulator: U, item: T) => U, initialAccumulator: U): U;
