import { z } from "zod"; export declare const isVideoConfig: z.ZodObject<{ /** * Whether the video should loop. */ loop: z.ZodOptional; /** * The name displayed at the bottom left of the video. */ name: z.ZodOptional; /** * A link to the avatar of the speaker, displayed at the bottom left of the video. */ avatar: z.ZodOptional; }, "strip", z.ZodTypeAny, { name?: string | undefined; loop?: boolean | undefined; avatar?: string | undefined; }, { name?: string | undefined; loop?: boolean | undefined; avatar?: string | undefined; }>; export declare const isPlayVideoEvent: z.ZodObject<{ url: z.ZodString; config: z.ZodOptional; /** * The name displayed at the bottom left of the video. */ name: z.ZodOptional; /** * A link to the avatar of the speaker, displayed at the bottom left of the video. */ avatar: z.ZodOptional; }, "strip", z.ZodTypeAny, { name?: string | undefined; loop?: boolean | undefined; avatar?: string | undefined; }, { name?: string | undefined; loop?: boolean | undefined; avatar?: string | undefined; }>>; }, "strip", z.ZodTypeAny, { url: string; config?: { name?: string | undefined; loop?: boolean | undefined; avatar?: string | undefined; } | undefined; }, { url: string; config?: { name?: string | undefined; loop?: boolean | undefined; avatar?: string | undefined; } | undefined; }>; /** * A message sent from the iFrame to the game to add a message in the chat. */ export type PlayVideoEvent = z.infer; export type VideoConfig = z.infer;