export type JsonPrimitive = string | number | boolean | null; export type JsonValue = JsonPrimitive | JsonValue[] | { [key: string]: JsonValue; }; export declare function canonicalJson(value: unknown): string; export declare function parseJson(text: string): JsonValue;