import type { PredicateFn } from '../types/functions/mod'; import { Pair } from '../types/mod'; export interface Partition { (fn: PredicateFn, iter: AsyncIterable): Promise, AsyncIterable>>; (fn: PredicateFn): (iter: AsyncIterable) => Promise, AsyncIterable>>; } export declare const partition: Partition; //# sourceMappingURL=partition.d.ts.map