export declare type JSONValue = string | number | boolean | JSONObject | JSONArray;
interface JSONObject {
    [x: string]: JSONValue;
}
declare type JSONArray = Array<JSONValue>;
export {};
