export type JsonValue = number | string | boolean | Array | { [key in string]?: JsonValue; } | null;