import { Benchmarks } from "../declarations/main/main.did.js"; type BenchOptions = { replicaVersion: string; compiler: "moc"; compilerVersion: string; gc: "copying" | "compacting" | "generational" | "incremental"; forceGc: boolean; query: boolean; legacyPersistence: boolean; save: boolean; compare: boolean; verbose: boolean; silent: boolean; profile: "Debug" | "Release"; /** `false` skips the `[optimize]` wasm-opt pass (`--no-optimize`). */ optimize: boolean; extraArgs: string[]; }; export declare function bench(filter?: string, optionsArg?: Partial): Promise; export {};