import { z } from "zod" import { Country } from "@/types/enums/country" export const getCityPagesInput = z.object({ country: z.nativeEnum(Country), })