import { z } from "zod"; export declare const isMenuItemClickedEvent: z.ZodObject<{ menuItem: z.ZodString; }, "strip", z.ZodTypeAny, { menuItem: string; }, { menuItem: string; }>; /** * A message sent from the game to the iFrame when a menu item is clicked. */ export type MenuItemClickedEvent = z.infer;