import type { z } from "@zod/zod"; import type { ObjectId } from "mongodb"; type Schema = z.ZodObject; type Infer = z.infer; export type InferModel = Infer & { _id?: ObjectId; }; export type Input = z.input;