/** * @description 接收文本消息 */ import { InMsg } from './InMsg'; export declare class InTextMsg extends InMsg { private content; private msgId; constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string); get getContent(): string; set setContent(content: string); get getMsgId(): string; set setMsgId(msgId: string); }