/** * ProtocolBench — Markdown report formatter. */ import type { ProtocolBenchReport, CollectedMetrics, BenchmarkScenarioResult } from './types.js'; /** * Evaluate collected metrics into a 4-axis scenario result. */ export declare function evaluateScenario(scenario: string, metrics: CollectedMetrics, durationMs: number): BenchmarkScenarioResult; /** * Format a ProtocolBench report as markdown for console output. */ export declare function formatBenchmarkReport(report: ProtocolBenchReport): string; /** * Compute aggregate scores from scenario results. */ export declare function aggregateScenarios(scenarios: BenchmarkScenarioResult[]): ProtocolBenchReport['aggregate']; //# sourceMappingURL=reporter.d.ts.map