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 function * to the terminal value of this channel. * @tsplus static effect/core/stream/Channel.Aspects map * @tsplus pipeable effect/core/stream/Channel map * @tsplus location "@effect/core/stream/Channel/operations/map" */ export declare function map(f: (out: OutDone) => OutDone2): (self: import("../definition").Channel) => import("../definition").Channel; //# sourceMappingURL=map.d.ts.map