import { Stream } from "@effect/core/stream/Stream/definition"; /** * Returns a stream whose failure and success channels have been mapped by the * specified pair of functions, `f` and `g`. * @tsplus static effect/core/stream/Stream.Aspects mapBoth * @tsplus pipeable effect/core/stream/Stream mapBoth * @tsplus location "@effect/core/stream/Stream/operations/mapBoth" */ export declare function mapBoth(f: (e: E) => E2, g: (a: A) => A2): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=mapBoth.d.ts.map