import { BasicEnumerable } from './BasicEnumerable'; import { IEnumerableFactory, IGrouping } from '../types'; /** * Represents a collection of objects that have a common key. * @typeparam TKey The type of the key. * @typeparam TSource The type of the values. */ export declare class Grouping extends BasicEnumerable implements IGrouping { /** * Gets the key of the IGrouping. */ readonly key: TKey; constructor(factory: IEnumerableFactory, key: TKey, src: () => Generator); } //# sourceMappingURL=Grouping.d.ts.map