import { UserBenchmarkConfig } from '../types/user-benchmark-config'
import { TestSpecResult } from '../types/benchmark-config'
/**
 * Creates a markdown reporter for aggregated benchmark results.
 *
 * @param results - An array of results for all test specifications.
 * @param _userConfig - The user's benchmark configuration.
 * @returns Formatted markdown report as a string.
 */
export declare function useMarkdownReport(
  results: TestSpecResult[],
  _userConfig?: UserBenchmarkConfig,
): Promise<string>
