/** * MiMo Web Provider - XML/JSON parsing utilities * * Shared parsing helpers ported from mimo2api parser.ts. * Used by mimoweb-tool-harvest.ts for response-side tool-call extraction. */ export declare function cleanInvisibleChars(text: string): string; export declare function repairJson(json: string): string; export declare function preprocessJsonString(text: string): string; export declare function parseJsonSafely(text: string): unknown; export declare function parseXmlParams(xml: string): Record; export declare function extractName(inner: string): string | null;