import type { BencheeSuite } from './BencheeSuite.d.mts'; import type { BenchmarkFn, BenchmarkOptions, Result, SuiteOptions } from './types.d.mts'; /** * 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>;