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