import { Channel } from "@effect/core/stream/Channel/definition/base"; /** * Returns a new channel that is the sequential composition of this channel * and the specified channel. The returned channel terminates with the result * of calling the specified function on the terminal values of both channels. * @tsplus static effect/core/stream/Channel.Aspects zipWith * @tsplus pipeable effect/core/stream/Channel zipWith * @tsplus location "@effect/core/stream/Channel/operations/zipWith" */ export declare function zipWith(that: Channel, f: (outDone: OutDone, outDone1: OutDone1) => OutDone2): (self: import("../definition").Channel) => import("../definition").Channel; //# sourceMappingURL=zipWith.d.ts.map