export interface Dictionary { [key: string]: T | undefined; } export type JSON = string | number | boolean | null | JSONObject | JSONArray; export interface JSONObject extends Dictionary { } export interface JSONArray extends Array { } export declare function JSONEquals(left: JSON | undefined, right: JSON | undefined): boolean; //# sourceMappingURL=json.d.ts.map