import { QyBaseMsg, QyMediaId } from './QyBaseMsg';
/**
 * @author Javen
 * @copyright javendev@126.com
 * @description 视频消息
 */
export declare class QyVideoMsg extends QyBaseMsg {
    private video;
    constructor(video: QyVideo, agentId?: string, toUser?: string, toParty?: string, toTag?: string, safe?: number, enableIdTrans?: number, enableDuplicateCheck?: number, duplicateCheckInterval?: number);
    get getVideo(): QyVideo;
    set setVideo(video: QyVideo);
}
export declare class QyVideo extends QyMediaId {
    private title;
    private description;
    constructor(mediaId: string, title: string, description: string);
    set setTitle(title: string);
    get getTitle(): string;
    get getDescription(): string;
    set setDescription(description: string);
}
