import type { OtlpMetricsDocument } from "./types.js"; /** * Parse Go benchmark text output into an OtlpMetricsDocument. * * Handles the standard format: * BenchmarkName-8 N value unit [value unit ...] * * Multiple value/unit pairs per line produce multiple metrics per benchmark. * The -P suffix is extracted as a "procs" tag. */ export declare function parseGoBench(input: string): OtlpMetricsDocument; //# sourceMappingURL=parse-go.d.ts.map