import { type IParallelEnumerable } from "../../types"; type SelectManyFunc = { (source: IParallelEnumerable, selector: (x: TSource, index: number) => Iterable): IParallelEnumerable; ; }, TOut>(source: IParallelEnumerable, selector: keyof TBindedSource): IParallelEnumerable; }; export declare const selectMany: SelectManyFunc; export {};