export declare type Primitive = string | number | boolean | null; export interface Object { [member: string]: Value; } export interface Arr extends Array { } export declare type Value = Primitive | Object | Arr; //# sourceMappingURL=index.d.ts.map