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 bimap(f: (e: E) => E2, g: (a: A) => B, __trace?: string): (self: Effect) => Effect; /** * Returns an effect whose failure and success channels have been mapped by * the specified pair of functions, `f` and `g`. */ export declare function bimap_(self: Effect, f: (e: E) => E2, g: (a: A) => B, __trace?: string): Effect; //# sourceMappingURL=bimap.d.ts.map