/**
 * Main API for generating SHAAM uniform format reports
 */
import type { GenerationOptions, ReportInput, ReportOutput } from '../types/index.js';
/**
 * Generates SHAAM uniform format report files (INI.TXT and BKMVDATA.TXT)
 * from a high-level JSON input object.
 *
 * @param input - The report input data
 * @param options - Generation options
 * @returns Generated SHAAM format files and metadata
 */
export declare function generateUniformFormatReport(input: ReportInput, options?: GenerationOptions): ReportOutput;
