declare function groupBy<K, V>(list: V[], keyGetter: (input: V) => K): Map<K, V[]>;

export { groupBy };
