import { ReportData } from '../types/index.js';
/**
 * Parses a SHAAM6111 report content string into a structured ReportData object
 * @param content - The raw content of the SHAAM6111 report
 * @returns A structured ReportData object
 */
export declare function parseReport(content: string, validate?: boolean): ReportData;
