declare const _default: {
    /**
     * Given an array of objects that contain {@link Game}s, and a function to fetch those
     * {@link Game}s' names, group those objects together with the disc numbers stripped.
     */
    groupMultiDiscGames<T>(values: T[], gameNameMapper: (value: T) => string): Map<string, T[]>;
};
export default _default;
