import { z } from "zod"; import type { JsonArray } from "./array.js"; import type { JsonObject } from "./object.js"; import { type JsonPrimitive } from "./primitive.js"; export type Json = JsonPrimitive | JsonObject | JsonArray; export declare const json: () => z.ZodType>;