export type JsonPrimitive = string | number | boolean | null; export type JsonObject = { readonly [key: string]: JsonValue; }; export type JsonArray = readonly JsonValue[]; export type JsonValue = JsonPrimitive | JsonObject | JsonArray; export declare function normalizeJsonValue(value: unknown): JsonValue; //# sourceMappingURL=json.d.ts.map