import type { z } from 'zod/v4'; /** Any validation schema — the base type accepted by .input(), .query(), .params() in the fitting builder. */ export type Schema = z.ZodType; /** Extracts the TypeScript type from a Schema — Infer gives you the validated type. */ export type Infer = z.infer; //# sourceMappingURL=types.d.ts.map