/**
 * @author Javen
 * @copyright javendev@126.com
 * @description 接收链接消息
 */
import { InMsg } from './InMsg';
export declare class InLinkMsg extends InMsg {
    private title;
    private description;
    private url;
    private msgId;
    constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string);
    get getTitle(): string;
    set setTitle(title: string);
    get getDescription(): string;
    set setDescription(description: string);
    get getUrl(): string;
    set setUrl(url: string);
    get getMsgId(): string;
    set setMsgId(msgId: string);
}
