import { Stream } from "@effect/core/stream/Stream/definition"; /** * Zips this stream with another point-wise and applies the function to the * paired elements. * * The new stream will end when one of the sides ends. * @tsplus static effect/core/stream/Stream.Aspects zipWith * @tsplus pipeable effect/core/stream/Stream zipWith * @tsplus location "@effect/core/stream/Stream/operations/zipWith" */ export declare function zipWith(that: Stream, f: (a: A, a2: A2) => A3): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=zipWith.d.ts.map