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 a tuple of * the terminal values of both channels. * @tsplus pipeable-operator effect/core/stream/Channel + * @tsplus static effect/core/stream/Channel.Aspects zip * @tsplus pipeable effect/core/stream/Channel zip * @tsplus location "@effect/core/stream/Channel/operations/zip" */ export declare function zip(that: Channel): (self: import("../definition").Channel) => import("../definition").Channel; //# sourceMappingURL=zip.d.ts.map