export declare function groupBy<Item>(items: Item[], getKey: (item: Item) => string): Record<string, Item[]>;
