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