/** * Zod utility functions */ import type { z, ZodRawShape } from 'zod'; /** * Extract the shape from a Zod schema for MCP protocol compatibility * Handles different Zod schema types safely */ export declare function extractSchemaShape(schema: z.ZodTypeAny): ZodRawShape; //# sourceMappingURL=zod-utils.d.ts.map