type JSONValue = string | number | boolean | null | JSONValue[] | {
    [key: string]: JSONValue;
};
export type NestableJSONValue = {
    [key: string]: JSONValue;
};
export {};
