import type { ExecutionStrategy } from "../../../../Effect/index.js"; import type * as C from "../core.js"; /** * Zips this stream with another point-wise. The provided functions will be used to create elements * for the composed stream. * * The functions `left` and `right` will be used if the streams have different lengths * and one of the streams has ended before the other. * * The execution strategy `exec` will be used to determine whether to pull * from the streams sequentially or in parallel. */ export declare function zipAllWithExec_(self: C.Stream, that: C.Stream, exec: ExecutionStrategy, left: (a: A) => A2, right: (a: A1) => A3, both: (a: A, a1: A1) => A4): C.Stream; /** * Zips this stream with another point-wise. The provided functions will be used to create elements * for the composed stream. * * The functions `left` and `right` will be used if the streams have different lengths * and one of the streams has ended before the other. * * The execution strategy `exec` will be used to determine whether to pull * from the streams sequentially or in parallel. * * @ets_data_first zipAllWithExec_ */ export declare function zipAllWithExec(that: C.Stream, exec: ExecutionStrategy, left: (a: A) => A2, right: (a: A1) => A3, both: (a: A, a1: A1) => A4): (self: C.Stream) => C.Stream; //# sourceMappingURL=zipAllWithExec.d.ts.map