export interface JsonArray extends Array { } export interface JsonObject extends Record { } export type JsonValue = boolean | string | number | bigint | JsonArray | JsonObject; //# sourceMappingURL=types.d.ts.map