import { z } from "zod"; export declare const isEnterLeaveEvent: z.ZodObject<{ name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; }, { name: string; }>; /** * A message sent from the game to the iFrame when a user enters or leaves a zone marked with the "zone" property. */ export type EnterLeaveEvent = z.infer;