import { z } from "zod"; import { type Json } from "./json.js"; export type JsonObject = { [key: string]: Json; }; export declare const object: () => z.ZodRecord>>;