/**
 * API for parsing SHAAM uniform format files
 */
import type { ReportInput } from '../types/index.cjs';
/**
 * Parses SHAAM uniform format files (INI.TXT and BKMVDATA.TXT)
 * back into structured JSON objects.
 *
 * @param iniContent - Content of the INI.TXT file
 * @param dataContent - Content of the BKMVDATA.TXT file
 * @returns Parsed report input data
 */
export declare function parseUniformFormatFiles(_iniContent: string, _dataContent: string): ReportInput;
