export interface Dictionary { [key: string]: T; } /** * Reduce over the keys of the iterable. * @param collection Any array-like data structure. * @param iteratee Callback to be called on every element. */ export declare const keyBy: (collection: T[], iteratee: (value: T) => string) => Dictionary;