import { MsgBase, MsgType } from './MsgBase'; export declare class TextMsg extends MsgBase { type: MsgType; msg: string; static createMsg(baseMsg: Partial): TextMsg; }