import { Stream } from "@effect/core/stream/Stream/definition"; /** * Zips this stream with another point-wise, creating a new stream of pairs of * elements from both sides. * * The defaults `defaultLeft` and `defaultRight` will be used if the streams * have different lengths and one of the streams has ended before the other. * @tsplus static effect/core/stream/Stream.Aspects zipAll * @tsplus pipeable effect/core/stream/Stream zipAll * @tsplus location "@effect/core/stream/Stream/operations/zipAll" */ export declare function zipAll(that: Stream, defaultLeft: A, defaultRight: A2): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=zipAll.d.ts.map