import { type IAsyncParallel, type IEqualityComparer, type IGrouping, type IParallelEnumerable, type SelectorKeyType } from "../../types"; type GroupByWithSelFunc = { (source: IAsyncParallel, keySelector: ((x: TSource) => TKey), elementSelector: (x: TSource) => TElement): IParallelEnumerable>; (source: IAsyncParallel, keySelector: ((x: TSource) => TKey), elementSelector: (x: TSource) => TElement, comparer: IEqualityComparer): IParallelEnumerable>; }; export declare const groupByWithSel: GroupByWithSelFunc; export {};