import type { ValidationResult } from '../../model/component-types.js'; import type { ScenarioModel } from '../../model/scenario-model.js'; /** * Checks localization completeness: * - quest.name and quest.description should exist * - Events with display != false should have ComponentName.text * - Events/Spawns with buttons > 0 should have ComponentName.button1..N * - Tokens should have ComponentName.text and ComponentName.button1 */ export declare function checkLocalizationCompleteness(model: ScenarioModel): ValidationResult[]; //# sourceMappingURL=localization-completeness.d.ts.map