import { UserBenchmarkConfig } from '../types/user-benchmark-config'
import { TestSpecResult } from '../types/benchmark-config'
/**
 * Creates a console-friendly string representation of benchmark results.
 *
 * @param results - An array of results for all test specifications.
 * @param _userConfig - The user's benchmark configuration (currently unused).
 * @returns Formatted string for console output.
 */
export declare function useConsoleReport(
  results: TestSpecResult[],
  _userConfig?: UserBenchmarkConfig,
): Promise<string>
