import { type IAsyncParallel, type IParallelEnumerable } from "../../types"; export declare const takeWhile: (source: IAsyncParallel, predicate: (x: TSource, index: number) => boolean) => IParallelEnumerable;