import { Cause } from "@effect/core/io/Cause/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; /** * A more powerful version of `mapError` which also surfaces the `Cause` * of the channel failure. * @tsplus static effect/core/stream/Channel.Aspects mapErrorCause * @tsplus pipeable effect/core/stream/Channel mapErrorCause * @tsplus location "@effect/core/stream/Channel/operations/mapErrorCause" */ export declare function mapErrorCause(f: (cause: Cause) => Cause): (self: import("../definition").Channel) => import("../definition").Channel; //# sourceMappingURL=mapErrorCause.d.ts.map