import { Predicate } from "@tsplus/stdlib/data/Predicate";
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 predicate evaluates to
* `true`.
* @tsplus static effect/core/stream/Stream.Aspects takeUntil
* @tsplus pipeable effect/core/stream/Stream takeUntil
* @tsplus location "@effect/core/stream/Stream/operations/takeUntil"
*/
export declare function takeUntil(f: Predicate): (self: import("../definition").Stream) => import("../definition").Stream;
//# sourceMappingURL=takeUntil.d.ts.map