/** * Helper methods for analyzing and inspecting JSON strings * Useful for debugging and error analysis */ export declare class JsonInspector { /** * Inspects a JSON string and highlights suspicious areas * @param jsonStr The JSON string to inspect * @returns A diagnostic report about problems in the JSON */ static inspectJsonForIssues(jsonStr: string): string; /** * Formats a context string with highlighting of the change position * @param str The string to format * @param highlightPos The position to highlight in the string * @returns The formatted string with highlighting */ static formatContextString(str: string, highlightPos: number): string; /** * Highlights differences between two strings * @param input The original string * @param output The modified string * @returns A description of the differences */ static highlightDifferences(input: string, output: string): string; } //# sourceMappingURL=json-inspector.util.d.ts.map