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