import { z } from "zod"; export declare const isSetSharedPlayerVariableEvent: z.ZodObject<{ key: z.ZodString; value: z.ZodUnknown; playerId: z.ZodNumber; }, "strip", z.ZodTypeAny, { playerId: number; key: string; value?: unknown; }, { playerId: number; key: string; value?: unknown; }>; /** * A message sent from the game to the iframe to change the value of a player variable */ export type SetSharedPlayerVariableEvent = z.infer;