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 zipAllFlatten * @tsplus pipeable effect/core/stream/Stream zipAllFlatten * @tsplus location "@effect/core/stream/Stream/operations/zipAllFlatten" */ export declare function zipAllFlatten>(that: Stream, defaultLeft: A, defaultRight: A2): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=zipAllFlatten.d.ts.map