import { ZodObject } from 'zod'; interface ParseSchemaResponse { success: boolean; error?: string; } declare const ZodUtil: { parseSchema: (schema: ZodObject, object: any) => ParseSchemaResponse; }; export default ZodUtil;