import { z } from "zod"; export declare const isLayerEvent: z.ZodObject<{ name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; }, { name: string; }>; /** * A message sent from the iFrame to the game to show/hide a layer. */ export type LayerEvent = z.infer;