import { z } from "zod"; export declare const isPlaySoundInBubbleEvent: z.ZodObject<{ url: z.ZodString; }, "strip", z.ZodTypeAny, { url: string; }, { url: string; }>; /** * A message sent from the iFrame to the game to play a message to all players in a bubble. */ export type PlaySoundInBubbleEvent = z.infer;