import { z } from "zod"; export declare const isJoinMucEvent: z.ZodObject<{ url: z.ZodString; name: z.ZodString; type: z.ZodString; subscribe: z.ZodBoolean; }, "strip", z.ZodTypeAny, { url: string; type: string; name: string; subscribe: boolean; }, { url: string; type: string; name: string; subscribe: boolean; }>; /** * A message sent from the iFrame to the game to change the camera position. */ export type JoinMucEvent = z.infer;