import { OutMsg } from './OutMsg'; import { InMsg } from '../input/InMsg'; export declare class OutVideoMsg extends OutMsg { private mediaId; private title; private description; constructor(inMsg: InMsg); toXml(): string; get getMediaId(): string; set setMediaId(mediaId: string); get getTitle(): string; set setTitle(title: string); get getDescription(): string; set setDescription(description: string); }