import { Stream } from "@effect/core/stream/Stream/definition"; /** * Zips this stream with another point-wise and emits tuples of elements from * both streams. * * The new stream will end when one of the sides ends. * @tsplus static effect/core/stream/Stream.Aspects zipFlatten * @tsplus pipeable effect/core/stream/Stream zipFlatten * @tsplus location "@effect/core/stream/Stream/operations/zipFlatten" */ export declare function zipFlatten(that: Stream): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=zipFlatten.d.ts.map