import "./_dnt.polyfills.js"; export declare namespace JSONType { type Primitive = string | boolean | number | null; type Array = (Primitive | Object | Array)[]; type Object = { [key: string]: Primitive | Array | Object; }; } //# sourceMappingURL=json.d.ts.map