/** * JsonParser - Utility for parsing JSON with detailed error messages */ export declare class JsonParser { /** * Parse JSON string with detailed error messages */ static parse(content: string, source?: string): T; /** * Parse JSON file with detailed error messages */ static parseFile(filePath: string, fileName?: string): T; /** * Build detailed error message with context */ private static buildDetailedError; } //# sourceMappingURL=JsonParser.d.ts.map