import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Creates a pipeline that drops elements until the specified predicate * evaluates to true. * @tsplus static effect/core/stream/Stream.Aspects dropUntil * @tsplus pipeable effect/core/stream/Stream dropUntil * @tsplus location "@effect/core/stream/Stream/operations/dropUntil" */ export declare function dropUntil(f: Predicate): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=dropUntil.d.ts.map