import type { Predicate } from "../../../../Function/index.js"; import * as C from "../core.js"; /** * Takes all elements of the stream for as long as the specified predicate * evaluates to `true`. */ export declare function takeWhile_(self: C.Stream, f: Predicate): C.Stream; /** * Takes all elements of the stream for as long as the specified predicate * evaluates to `true`. * * @ets_data_first takeWhile_ */ export declare function takeWhile(f: Predicate): (self: C.Stream) => C.Stream; //# sourceMappingURL=takeWhile.d.ts.map