import { z } from "zod"; export declare const isOpenCoWebsiteEvent: z.ZodObject<{ url: z.ZodString; allowApi: z.ZodOptional; allowPolicy: z.ZodOptional; widthPercent: z.ZodOptional; position: z.ZodOptional; closable: z.ZodOptional; lazy: z.ZodOptional; }, "strip", z.ZodTypeAny, { url: string; allowApi?: boolean | undefined; allowPolicy?: string | undefined; widthPercent?: number | undefined; position?: number | undefined; closable?: boolean | undefined; lazy?: boolean | undefined; }, { url: string; allowApi?: boolean | undefined; allowPolicy?: string | undefined; widthPercent?: number | undefined; position?: number | undefined; closable?: boolean | undefined; lazy?: boolean | undefined; }>; export declare const isCoWebsite: z.ZodObject<{ id: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; }, { id: string; }>; /** * A message sent from the iFrame to the game to add a message in the chat. */ export type OpenCoWebsiteEvent = z.infer;