import type { PredicateFn } from '../types/functions/mod'; export interface Filter { (predicate: PredicateFn, iter: AsyncIterable): AsyncIterable; (predicate: PredicateFn): (iter: AsyncIterable) => AsyncIterable; } export declare const filter: Filter; //# sourceMappingURL=filter.d.ts.map