import { z } from "zod"; export declare const isLoadSoundEvent: z.ZodObject<{ url: z.ZodString; }, "strip", z.ZodTypeAny, { url: string; }, { url: string; }>; /** * A message sent from the iFrame to the game to add a message in the chat. */ export type LoadSoundEvent = z.infer;