/** * Utility functions for handling large JSON objects in the inspector */ interface LargeJSONInfo { isLarge: boolean; size: number; sizeFormatted: string; preview: string; full: string; } /** * Check if a JSON object is too large and get preview information */ export declare function analyzeJSON(data: any): LargeJSONInfo; /** * Download JSON data as a file */ export declare function downloadJSON(data: any, filename?: string): void; export {}; //# sourceMappingURL=jsonUtils.d.ts.map