import { IDictionary } from '../../../types/Containers/IDictonary/IDictionary'; import { Entry } from '../../../types/Containers/Entry/Entry'; /** * A reducer designed to turn an array of Entry tuples into a Dictionary. * @example * let myEntries = collection.toEntries(); // or anything yielding an Entry 2-tuple [string, any] * let myObject = myEntries.reduce(fromEntries, {}); // idiomatic: "reduce from entries." */ export declare function fromEntries(result: IDictionary, [currentKey, currentValue]: Entry, currentIdx: number, array: Entry[]): IDictionary;