import { z } from "zod"; export declare const isLoadPageEvent: 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 LoadPageEvent = z.infer;