import type { Effect } from "./effect.js"; /** * Returns an effect whose failure and success channels have been mapped by * the specified pair of functions, `f` and `g`. */ export declare function mapBoth_(self: Effect, f: (e: E) => E1, g: (a: A) => B, __trace?: string): Effect; /** * Returns an effect whose failure and success channels have been mapped by * the specified pair of functions, `f` and `g`. * * @ets_data_first mapBoth_ */ export declare function mapBoth(f: (e: E) => E1, g: (a: A) => B, __trace?: string): (self: Effect) => Effect; //# sourceMappingURL=mapBoth.d.ts.map