import { z } from 'zod'; import type { JSONSchema } from '../types/json.js'; /** * Converts a Zod schema to JSON Schema format. * Strips the $schema property to reduce token usage. * * @param schema - The Zod schema to convert * @returns JSON Schema representation */ export declare function zodSchemaToJsonSchema(schema: z.ZodSchema): JSONSchema; //# sourceMappingURL=zod-utils.d.ts.map