import { ObjectType } from './types'; declare const reduce: (arr: ObjectType | G[], fn: (result: T, data: G, idx: string | number) => T, init: T) => T; export default reduce;