import type * as C from "../core.js"; /** * Returns a new channel that is the sequential composition of this channel and the specified * channel. The returned channel terminates with the terminal value of the other channel. */ export declare function zipRight_(self: C.Channel, that: C.Channel): C.Channel; /** * Returns a new channel that is the sequential composition of this channel and the specified * channel. The returned channel terminates with the terminal value of the other channel. * * @ets_data_first zipRight_ */ export declare function zipRight(that: C.Channel): (self: C.Channel) => C.Channel; //# sourceMappingURL=zipRight.d.ts.map