import type { Effect } from "./effect.js"; /** * Attempts to convert defects into a failure, throwing away all information * about the cause of the failure. */ export declare function absorbWith(f: (e: E) => unknown, __trace?: string): (fa: Effect) => Effect; /** * Attempts to convert defects into a failure, throwing away all information * about the cause of the failure. */ export declare function absorbWith_(fa: Effect, f: (e: E) => unknown, __trace?: string): Effect; /** * Attempts to convert defects into a failure, throwing away all information * about the cause of the failure. */ export declare function absorb(self: Effect, __trace?: string): Effect; //# sourceMappingURL=absorbWith.d.ts.map