/** * Prometheus exposition format renderer. * * Generates text/plain output from ITelemetryStore data. * No dependencies — hand-rolled per the exposition format spec: * https://prometheus.io/docs/instrumenting/exposition_formats/ */ import type { ITelemetryStore } from "./types"; export declare function renderPrometheusMetrics(store: ITelemetryStore): string; //# sourceMappingURL=prometheus.d.ts.map