import * as Tp from "../Collections/Immutable/Tuple/index.js"; import type { Effect } from "./effect.js"; /** * Summarizes a effect by computing some value before and after execution, and * then combining the values to produce a summary, together with the result of * execution. */ export declare function summarized_(self: Effect, summary: Effect, f: (start: B, end: B) => C, __trace?: string): Effect>; /** * Summarizes a effect by computing some value before and after execution, and * then combining the values to produce a summary, together with the result of * execution. * * @ets_data_first summarized_ */ export declare function summarized(summary: Effect, f: (start: B, end: B) => C, __trace?: string): (self: Effect) => Effect>; //# sourceMappingURL=summarized.d.ts.map