import { Channel } from "@effect/core/stream/Channel/definition/base"; /** * Returns a new channel whose outputs are fed to the specified factory * function, which creates new channels in response. These new channels are * sequentially concatenated together, and all their outputs appear as outputs * of the newly returned channel. * @tsplus static effect/core/stream/Channel.Aspects concatMap * @tsplus pipeable effect/core/stream/Channel concatMap * @tsplus location "@effect/core/stream/Channel/operations/concatMap" */ export declare function concatMap(f: (o: OutElem) => Channel): (self: import("../definition").Channel) => import("../definition").Channel; //# sourceMappingURL=concatMap.d.ts.map