import { BenchmarkResult } from '../types/BenchmarkResult';
import { BenchmarkResultWithRegressionDeviation } from '../types/BenchmarkResultWithRegressionDeviation';
declare const calculateLinearRegressionDeviations: ({ benchmarkResults }: {
    benchmarkResults: BenchmarkResult[];
}) => BenchmarkResultWithRegressionDeviation[];
export { calculateLinearRegressionDeviations };
