export interface BenchmarkResult { 'Task name': string; 'Latency avg (ns)': string; 'Latency med (ns)': string; 'Throughput avg (ops/s)': string; 'Throughput med (ops/s)': string; Samples: number; } export declare function analyzeBenchmarkResults(results: BenchmarkResult[]): { name: string; latencyImprovement: number; throughputImprovement: number; }[];