import z from "zod" import { Lang } from "@/constants/languages" export const headerInput = z .object({ lang: z.nativeEnum(Lang), }) .optional()