import { BenchmarkFunction } from '../types/BenchmarkFunction'; import { BenchmarkSetup } from '../types/BenchmarkSetup'; declare const name = "compare large arrays"; declare const setup: BenchmarkSetup; declare const benchmark: BenchmarkFunction; declare const scales: number[]; declare const unit = "array items"; export { benchmark, name, scales, setup, unit };