import type * as CK from "../../../../Collections/Immutable/Chunk/index.js"; import * as Tp from "../../../../Collections/Immutable/Tuple/index.js"; import * as T from "../../../../Effect/index.js"; import type * as Ex from "../../../../Exit/index.js"; import type * as O from "../../../../Option/index.js"; import * as C from "../core.js"; /** * Combines the chunks from this stream and the specified stream by repeatedly applying the * function `f` to extract a chunk using both sides and conceptually "offer" * it to the destination stream. `f` can maintain some internal state to control * the combining process, with the initial state being specified by `s`. */ export declare function combineChunks_(self: C.Stream, that: C.Stream, s: S, f: (s: S, e1: T.Effect, CK.Chunk>, e2: T.Effect, CK.Chunk>) => T.Effect, Tp.Tuple<[CK.Chunk, S]>>>): C.Stream; /** * Combines the chunks from this stream and the specified stream by repeatedly applying the * function `f` to extract a chunk using both sides and conceptually "offer" * it to the destination stream. `f` can maintain some internal state to control * the combining process, with the initial state being specified by `s`. * * @ets_data_first combineChunks_ */ export declare function combineChunks(that: C.Stream, s: S, f: (s: S, e1: T.Effect, CK.Chunk>, e2: T.Effect, CK.Chunk>) => T.Effect, Tp.Tuple<[CK.Chunk, S]>>>): (self: C.Stream) => C.Stream; //# sourceMappingURL=combineChunks.d.ts.map