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