import type { IParallelEnumerable } from "../../types"; export declare const partitionAsync: (source: IParallelEnumerable, predicate: (x: TSource) => Promise) => Promise<[pass: TSource[], fail: TSource[]]>;