import { Predicate } from "../types"; /** * * @operation `Transformation` * @param iterable * @param predicate * @returns */ export declare function filter(iterable: Iterable, predicate: Predicate): Iterable;