import { BencheeSuite } from './BencheeSuite.js'; import type { BenchmarkFn, BenchmarkOptions, Result, SuiteOptions } from './types.js'; /** * Create a new benchee suite. */ export declare const createSuite: (passedOptions?: SuiteOptions) => BencheeSuite; /** * Benchmark one function standalone, outside the context of a suite. */ export declare function benchmark(name: N, fn: BenchmarkFn, options?: BenchmarkOptions): Promise>;