export declare type Json = any; export declare type JSONValue = string | number | boolean | IJSONObject | IJSONArray; export interface IJSONObject { [x: string]: JSONValue; } export interface IJSONArray extends Array { }