import { OutMsg } from './OutMsg';
import { InMsg } from '../in/InMsg';
export declare class OutTextMsg extends OutMsg {
    private content;
    constructor(inMsg: InMsg);
    toXml(): string;
    get getContent(): string;
    setContent(content: string): OutTextMsg;
}
