import type { Effect } from "./effect.js"; /** * Returns an effect with its error channel mapped using the specified * function. This can be used to lift a "smaller" error into a "larger" * error. */ export declare function mapError_(self: Effect, f: (e: E) => E2, __trace?: string): Effect; /** * Returns an effect with its error channel mapped using the specified * function. This can be used to lift a "smaller" error into a "larger" * error. * * @ets_data_first mapError_ */ export declare function mapError(f: (e: E) => E2, __trace?: string): (self: Effect) => Effect; //# sourceMappingURL=mapError.d.ts.map