type ItemType = {
    [key: string]: any;
};
export declare function groupByKey(items: ItemType[], callback: (item: ItemType) => string): Array<ItemType[]>;
export {};
