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