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