import { STM } from "@effect/core/stm/STM/definition/base"; /** * Summarizes a `STM` effect by computing a provided value before and after * execution, and then combining the values to produce a summary, together * with the result of execution. * @tsplus static effect/core/stm/STM.Aspects summarized * @tsplus pipeable effect/core/stm/STM summarized * @tsplus location "@effect/core/stm/STM/operations/summarized" */ export declare function summarized(summary: STM, f: (start: B, end: B) => C): (self: import("../definition").STM) => import("../definition").STM; //# sourceMappingURL=summarized.d.ts.map