import { isZodInstalled } from './isZodInstalled'; export function isZodTuple(x: any): boolean { if (!isZodInstalled) { return false; } // eslint-disable-next-line global-require const { ZodTuple } = require('zod'); return x instanceof ZodTuple; }