import { Effect } from "@effect/core/io/Effect/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; /** * Returns a new channel, which is the same as this one, except the terminal * value of the returned channel is created by applying the specified * effectful function to the terminal value of this channel. * @tsplus static effect/core/stream/Channel.Aspects mapEffect * @tsplus pipeable effect/core/stream/Channel mapEffect * @tsplus location "@effect/core/stream/Channel/operations/mapEffect" */ export declare function mapEffect(f: (o: OutDone) => Effect): (self: import("../definition").Channel) => import("../definition").Channel; //# sourceMappingURL=mapEffect.d.ts.map