import type { OtlpMetricsDocument } from "./types.js"; export type Format = "go" | "benchmark-action" | "rust" | "hyperfine" | "pytest-benchmark" | "otlp" | "auto"; /** * Detect the input format and parse into an OtlpMetricsDocument. */ export declare function parseBenchmarks(input: string, format?: Format): OtlpMetricsDocument; //# sourceMappingURL=parse.d.ts.map