import type { TestCase } from './types'; export interface BenchmarkSuite { name: string; description: string; tests: TestCase[]; } /** * Get a pre-built benchmark suite by name. */ export declare function getBenchmarkSuite(suite: string): BenchmarkSuite; /** * List available benchmark suite names. */ export declare function listBenchmarkSuites(): string[]; //# sourceMappingURL=benchmarks.d.ts.map