import type { Effect } from "./effect.js"; /** * Returns an effect that effectfully "peeks" at the success of this effect. * * @ets_data_first tap_ */ export declare function tap(f: (_: A) => Effect, __trace?: string): (_: Effect) => Effect; /** * Returns an effect that effectfully "peeks" at the success of this effect. */ export declare function tap_(_: Effect, f: (_: A) => Effect, __trace?: string): Effect; //# sourceMappingURL=tap.d.ts.map