/** * Warnings Document Generator * Utility to generate a document from generation warnings */ import type { GenerationWarning } from '@json-to-office/shared-docx'; import type { ReportComponentDefinition } from '../types'; /** * Generate a report document from warnings * Returns null if there are no warnings */ export declare function generateWarningsDocument(warnings: GenerationWarning[] | null): ReportComponentDefinition | null; /** * Format warnings as plain text * Useful for logging or text output */ export declare function formatWarningsText(warnings: GenerationWarning[] | null): string; //# sourceMappingURL=warningsDocument.d.ts.map