import { ReportData } from '../types/report-data.js';
/**
 * Generates a full report string for the SHAAM 6111 specification.
 * @param reportData The ReportData object containing all sections of the report.
 * @returns A string formatted according to the SHAAM 6111 specification, 8612 characters long.
 */
export declare function generateReport(reportData: ReportData, validate?: boolean): string;
