import { Effect } from "@effect/core/io/Effect/definition"; import { Sink } from "@effect/core/stream/Sink/definition/base"; /** * Effectfully transforms both inputs and result of this sink using the * provided functions. * @tsplus static effect/core/stream/Sink.Aspects dimapEffect * @tsplus pipeable effect/core/stream/Sink dimapEffect * @tsplus location "@effect/core/stream/Sink/operations/dimapEffect" */ export declare function dimapEffect(f: (input: In1) => Effect, g: (z: Z) => Z1): (self: import("../definition").Sink) => import("../definition").Sink; //# sourceMappingURL=dimapEffect.d.ts.map