import * as CK from "../../../../Collections/Immutable/Chunk/index.js"; import * as C from "../core.js"; interface Pipeline { (stream: C.Stream): C.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. */ export declare function branchAfter_(self: C.Stream, n: number, f: (a1: CK.Chunk) => Pipeline): C.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. * * @ets_data_first branchAfter_ */ export declare function branchAfter(n: number, f: (a1: CK.Chunk) => Pipeline): (self: C.Stream) => C.Stream; export {}; //# sourceMappingURL=branchAfter.d.ts.map