/** * Represents a video object with an optional caption. * * @deprecated Please use types instead of interfaces * * @ignore */ interface VideoObject { /** * The URL of the video. */ url: string; /** * An optional caption for the video. */ caption?: string; } export type { VideoObject };