import { BenchmarkFunction } from '../types/BenchmarkFunction'; import { BenchmarkSetup } from '../types/BenchmarkSetup'; declare const name = "compare long strings"; declare const setup: BenchmarkSetup; declare const benchmark: BenchmarkFunction; declare const scales: number[]; declare const unit = "characters"; export { benchmark, name, scales, setup, unit };