import { ValidationResult } from '../types/index.js';
/**
 * Validates a SHAAM6111 report content string.
 * @param content The raw content of the SHAAM6111 report as a string.
 * @returns A ValidationResult object containing validation status and aggregated errors.
 */
export declare function validateReport(content: string): ValidationResult;
