import type { Command } from "commander"; import type { EmitContext } from "../commander.js"; import { type AdapterAttestationReport, type AdapterBenchReport, type BenchResult } from "../core/adapters/index.js"; import type { AdapterProfile } from "../core/adapters/types.js"; export declare function registerAdapterCommand(program: Command, emit: EmitContext): void; export declare function renderAttestationReport(report: AdapterAttestationReport): string; export declare function renderProfileTable(profiles: readonly AdapterProfile[]): string; export declare function renderProfile(profile: AdapterProfile): string; export declare function renderBenchReport(report: AdapterBenchReport): string; /** Kept exported so command tests can assert row semantics without model calls. */ export type { BenchResult }; //# sourceMappingURL=adapter.d.ts.map