import { Sink } from "@effect/core/stream/Sink/definition/base"; /** * Feeds inputs to this sink until it yields a result, then switches over to * the provided sink until it yields a result, finally combining the two * results with `f`. * @tsplus static effect/core/stream/Sink.Aspects zipWith * @tsplus pipeable effect/core/stream/Sink zipWith * @tsplus location "@effect/core/stream/Sink/operations/zipWith" */ export declare function zipWith(that: Sink, f: (z: Z, z1: Z1) => Z2): (self: import("../definition").Sink) => import("../definition").Sink; //# sourceMappingURL=zipWith.d.ts.map