import { z } from "zod"; export declare const isButtonClickedEvent: z.ZodObject<{ popupId: z.ZodNumber; buttonId: z.ZodNumber; }, "strip", z.ZodTypeAny, { popupId: number; buttonId: number; }, { popupId: number; buttonId: number; }>; /** * A message sent from the game to the iFrame when a user enters or leaves a zone marked with the "zone" property. */ export type ButtonClickedEvent = z.infer;