import { Stream } from "@effect/core/stream/Stream/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; interface Pipeline { (stream: Stream): Stream; } /** * Reads the first `n` values from the stream and uses them to choose the * pipeline that will be used for the remainder of the stream. * @tsplus static effect/core/stream/Stream.Aspects branchAfter * @tsplus pipeable effect/core/stream/Stream branchAfter * @tsplus location "@effect/core/stream/Stream/operations/branchAfter" */ export declare function branchAfter(n: number, f: (output: Chunk) => Pipeline): (self: Stream) => Stream; export {}; //# sourceMappingURL=branchAfter.d.ts.map