export declare type JsonPrimitive = boolean | number | string | null | undefined; export declare type JsonValue = JsonPrimitive | JsonObject | Array; export interface JsonObject { [key: string]: JsonValue; }