import * as Tp from "../../../../Collections/Immutable/Tuple/index.js"; import * 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 a tuple of the terminal values of both channels. */ export declare function zip_(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 a tuple of the terminal values of both channels. * * @ets_data_first zip_ */ export declare function zip(that: C.Channel): (self: C.Channel) => C.Channel>; //# sourceMappingURL=zip.d.ts.map