import type { z } from "zod"; import type { GraderFn } from "../types.js"; /** * Parses output.text as JSON and validates against a Zod schema. * Fails if text is not valid JSON or doesn't match the schema. */ export declare function jsonSchema(schema: z.ZodType): GraderFn; //# sourceMappingURL=json-schema.d.ts.map