import type { EvidencePack } from "../bench/evidence-pack/types.js"; /** * Serialize an evidence pack to deterministic, key-sorted JSON (the repo's * deterministic-JSON invariant), so two packs with identical content produce * byte-identical output regardless of property insertion order. */ export declare function serializeEvidencePack(pack: EvidencePack): string; export interface RunBenchPackOptions { cwd: string; output: string; } export declare function runBenchPack(opts: RunBenchPackOptions): Promise;