/** * Example usage of the comprehensive validation and error handling system * This file demonstrates how to use the validation system in practice */ /** * Example: Validate a JSON file with error recovery */ export declare function validateJsonExample(): Promise; /** * Example: Validate an XLIFF file with strict mode */ export declare function validateXliffExample(): Promise; /** * Example: Validate an ARB file with ICU syntax */ export declare function validateArbExample(): Promise; /** * Example: Handle completely corrupted file with fallback recovery */ export declare function validateCorruptedFileExample(): Promise; /** * Example: Batch validation of multiple files */ export declare function batchValidationExample(): Promise; export declare const validationExamples: { validateJsonExample: typeof validateJsonExample; validateXliffExample: typeof validateXliffExample; validateArbExample: typeof validateArbExample; validateCorruptedFileExample: typeof validateCorruptedFileExample; batchValidationExample: typeof batchValidationExample; };