import { z } from "zod"; export declare const isSetVariableEvent: z.ZodObject<{ key: z.ZodString; value: z.ZodUnknown; }, "strip", z.ZodTypeAny, { key: string; value?: unknown; }, { key: string; value?: unknown; }>; export declare const isSetVariableIframeEvent: z.ZodObject<{ type: z.ZodLiteral<"setVariable">; data: z.ZodObject<{ key: z.ZodString; value: z.ZodUnknown; }, "strip", z.ZodTypeAny, { key: string; value?: unknown; }, { key: string; value?: unknown; }>; }, "strip", z.ZodTypeAny, { type: "setVariable"; data: { key: string; value?: unknown; }; }, { type: "setVariable"; data: { key: string; value?: unknown; }; }>; /** * A message sent from the iFrame to the game to change the value of the property of the layer */ export type SetVariableEvent = z.infer;