export declare const groupBy: <T extends object, U extends keyof T>(xs: T[], key: U) => {
    [key: string]: T[];
};
