import { z } from 'zod'; export type JSONValue = null | string | number | boolean | JSONObject | JSONArray; export type JSONObject = { [key: string]: JSONValue; }; export type JSONArray = JSONValue[]; export declare const stringSchema: z.ZodString; export declare const jsonValueSchema: z.ZodType; export declare const jsonObjectSchema: z.ZodType;