/** * Groups array items into a Map, given a function to produce grouping key. * * @internal */ export declare function groupBy(list: ReadonlyArray, keyFn: (item: T) => K): Map>;