import type { Predicate } from "@thi.ng/api";
import type { Transducer } from "./api.js";
export declare function filter<T>(pred: Predicate<T>): Transducer<T, T>;
export declare function filter<T>(pred: Predicate<T>, src: Iterable<T>): IterableIterator<T>;
//# sourceMappingURL=filter.d.ts.map