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