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