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