import { type AnyZodObject, type ZodType } from 'zod'; export declare function isZodError(error: unknown): boolean; /** * Create a resolver function for a Zod schema. */ export declare function zodResolver(schema?: ZodType): ((values: unknown) => string | undefined) | undefined; /** * Get a field schema from a Zod object schema. */ export declare function getFieldZodObject(name: string, zodSchema?: AnyZodObject): ZodType | undefined; //# sourceMappingURL=zodUtils.d.ts.map