export interface BenchmarkCommandOptions { repo?: string; reportDir?: string; recordsPath?: string; casesPath?: string; } export declare function benchmarkCommand(suite: string, options?: BenchmarkCommandOptions): Promise<{ artifactPath?: string; indexPath?: string; sha256?: string; comparisonPath?: string; summaryPath?: string; provenanceArtifactPath?: string; provenanceIndexPath?: string; }>; export declare function benchmarkSuiteCommand(suite: string, options: { repo?: string; reportDir?: string; recordsPath?: string; casesPath?: string; }): Promise<{ artifactPath?: string; indexPath?: string; sha256?: string; comparisonPath?: string; summaryPath?: string; provenanceArtifactPath?: string; provenanceIndexPath?: string; }>;