export declare const groupByObject: <T>(arr: T[], getKey: (item: T) => string) => Record<string, T[]>;
