type Key = number | string | symbol;
declare const groupByKeys: <T extends Record<Key, unknown>>(array: T[], key1: Key, key2: Key) => Record<string, Record<string, T[]>>;
export = groupByKeys;
