import { type BenchmarkReportFormat } from "@devflow-tools/benchmark"; import { type DevFlowDatabase } from "@devflow-tools/database"; export interface RunBenchmarkOptions { projectRoot: string; suite?: string; rounds?: number; output?: "text" | "json"; database?: DevFlowDatabase; } export interface ReportBenchmarkOptions { runId?: string; baselineRunId?: string; output?: BenchmarkReportFormat; database?: DevFlowDatabase; } export declare function runBenchmarkCommand(options: RunBenchmarkOptions): Promise; export declare function reportBenchmarkCommand(options?: ReportBenchmarkOptions): Promise; //# sourceMappingURL=benchmark-cmd.d.ts.map