import { Channel } from "@effect/core/stream/Channel/definition/base"; /** * Returns a new channel, which sequentially combines this channel, together * with the provided factory function, which creates a second channel based on * the terminal value of this channel. The result is a channel that will first * perform the functions of this channel, before performing the functions of * the created channel (including yielding its terminal value). * @tsplus static effect/core/stream/Channel.Aspects flatMap * @tsplus pipeable effect/core/stream/Channel flatMap * @tsplus location "@effect/core/stream/Channel/operations/flatMap" */ export declare function flatMap(f: (d: OutDone) => Channel): (self: import("../definition").Channel) => import("../definition").Channel; //# sourceMappingURL=flatMap.d.ts.map