import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Takes all elements of the stream until the specified effectual predicate * evaluates to `true`. * @tsplus static effect/core/stream/Stream.Aspects takeUntilEffect * @tsplus pipeable effect/core/stream/Stream takeUntilEffect * @tsplus location "@effect/core/stream/Stream/operations/takeUntilEffect" */ export declare function takeUntilEffect(f: (a: A) => Effect): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=takeUntilEffect.d.ts.map