import type { BenchmarkReport, SuiteReport, FieldValidationMessage } from './types.js'; /** * Validates a benchmark report and list all issues found. * * @param report - The benchmark report to validate. * @returns The list of issues found in the report. Empty array when no issues. */ export declare function validateBenchmarkReport(report: BenchmarkReport): FieldValidationMessage[]; /** * Validates a suite report and list all issues found. * * @param report - The suite report to validate. * @returns The list of issues found in the report. Empty array when no issues. */ export declare function validateSuiteReport(report: SuiteReport): FieldValidationMessage[]; //# sourceMappingURL=validators.d.ts.map