import { IntlShape } from 'react-intl'; import { Inconsistency } from '../types/inconsistency.js'; /** * Generate human-readable messages for detected inconsistencies. * * @param inconsistencies - * @param intl - */ export declare const buildInconsistenciesMessage: (inconsistencies: Record, intl: IntlShape) => { severityLevel: string; message: string; }[];