declare function reduce(array: Array, initialState: R, reducer: (state: R, value: T) => R): R; export default reduce;