import * as Ex from "../Exit/index.js"; import type { Effect } from "./effect.js"; /** * Returns an effect that effectfully "peeks" at the result of this effect as an `Exit`. */ export declare function tapExit_(self: Effect, f: (exit: Ex.Exit) => Effect, __trace?: string): Effect; /** * Returns an effect that effectfully "peeks" at the result of this effect as an `Exit`. * * @ets_data_first tapExit_ */ export declare function tapExit(f: (exit: Ex.Exit) => Effect, __trace?: string): (self: Effect) => Effect; //# sourceMappingURL=tapExit.d.ts.map