export type JsonNode = { kind: "primitive"; path: string; valueType: "string" | "number" | "boolean" | "null"; raw: string; } | { kind: "object"; path: string; entries: { key: string; child: JsonNode; }[]; } | { kind: "array"; path: string; items: JsonNode[]; } | { kind: "longString"; path: string; raw: string; }; export declare const LONG_STRING_THRESHOLD = 80;