import { z } from "zod"; export declare const isClosePopupEvent: z.ZodObject<{ popupId: z.ZodNumber; }, "strip", z.ZodTypeAny, { popupId: number; }, { popupId: number; }>; /** * A message sent from the iFrame to the game to add a message in the chat. */ export type ClosePopupEvent = z.infer;