import type { RecordedRunMetricGroupBy, RecordedRunMetricsReport } from "@mono-agent/observability"; export interface RunMetricsArgs { readonly configPath?: string; readonly artifactDir?: string; readonly since?: string; readonly until?: string; readonly groupBy?: RecordedRunMetricGroupBy; readonly json?: boolean; readonly includeMemory?: boolean; } export declare function runMetrics(args: RunMetricsArgs): Promise; export declare function renderMetricsReport(report: RecordedRunMetricsReport): string; //# sourceMappingURL=metrics.d.ts.map