import { z } from "zod"; export declare const isEnablePlayersTrackingEvent: z.ZodObject<{ players: z.ZodBoolean; movement: z.ZodBoolean; }, "strip", z.ZodTypeAny, { players: boolean; movement: boolean; }, { players: boolean; movement: boolean; }>; /** * A message sent from the game to the iFrame to notify the game that the iframe is interested in tracking users. */ export type EnablePlayersTrackingEvent = z.infer;