import { Middleware } from '../runner'; import { IBenchmarkCase } from '../suite'; /** * A middleware that runs a CPU profile benchmarks. */ export declare const cpuProfiler: (onResult: (bench: Readonly, profile: object) => void | Promise, include?: string | RegExp | undefined) => Middleware;