/** * Benchmark testing helpers for Vitest */ /** * Create a benchmark suite */ export declare function createBenchmark(name: string, options: { baseline: () => void | Promise; optimized?: () => void | Promise; iterations?: number; }): { toMatchBaseline: (options?: { tolerance?: number; }) => boolean; }; /** * Quick benchmark helper */ export declare function quickBench(name: string, function_: () => void | Promise, iterations?: number): void; //# sourceMappingURL=index.d.ts.map