import { z as _z } from 'zod' import type { DeepPartial } from './types' type ZodDeepPartial = (a: _z.ZodType) => _z.ZodType> type ZodDeepLoose = (a: _z.ZodType) => _z.ZodType declare module 'zod' { namespace z { const deepPartial: ZodDeepPartial const deepLoose: ZodDeepLoose } } export { _z as z }