import { z } from "zod"; export declare const jsonObjectSchema: z.ZodObject<{}, z.core.$catchall>; export type JsonObject = z.infer; export declare function parseJsonObject(value: unknown, label: string): JsonObject; export declare function tryParseJsonObject(value: unknown): JsonObject | null; //# sourceMappingURL=json-object.d.ts.map