import { z } from "zod"; export declare const isModalEvent: z.ZodObject<{ src: z.ZodString; allow: z.ZodDefault>>; title: z.ZodDefault>; position: z.ZodDefault>>; allowApi: z.ZodDefault>; allowFullScreen: z.ZodDefault>; closable: z.ZodDefault>; }, "strip", z.ZodTypeAny, { title: string; allowApi: boolean; position: "left" | "right" | "center"; closable: boolean; allow: string | null; src: string; allowFullScreen: boolean; }, { src: string; title?: string | undefined; allowApi?: boolean | undefined; position?: "left" | "right" | "center" | undefined; closable?: boolean | undefined; allow?: string | null | undefined; allowFullScreen?: boolean | undefined; }>; /** * A message sent from the iFrame to the game to emit a notification. */ export type ModalEvent = z.infer;