import type * as C from "../core.js"; /** * Returns a stream whose failure and success channels have been mapped by * the specified pair of functions, `f` and `g`. */ export declare function mapBoth_(self: C.Stream, f: (e: E) => E1, g: (a: A) => A1): C.Stream; /** * Returns a stream 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) => A1): (self: C.Stream) => C.Stream; //# sourceMappingURL=mapBoth.d.ts.map