import { z } from "zod"; export type Nullable = T | null; export type ISO8601Duration = string; export type ISO8601DateTime = string; export type JSONValue = string | number | boolean | null | { [x: string]: JSONValue; } | Array; export declare const jsonSchema: z.ZodType;