type ZodModule = typeof import('zod/v4'); type ZodZ = ZodModule['z']; /** * Exposes Zod schema validation functions. * Requires Zod integration to be enabled. * * Usage: `const z = (await useZod())!` * * @returns Zod `z` object for schema validation */ export declare const useZod: () => Promise; export {};