/** * Groups an array of objects by the given key */ declare const groupBy: (arr: Object[], key: string) => Object; export default groupBy;