import JSONObject from "./JSONObject";
declare type JSON = boolean | null | number | string | JSONObject | JSON[];
export default JSON;
