import { EventInMsg } from './EventInMsg';
export declare class InTemplateMsgEvent extends EventInMsg {
    static EVENT: string;
    static EVENT_INTEMPLATEMSG_STATUS_SUCCESS: string;
    static EVENT_INTEMPLATEMSG_STATUS_BLOCK: string;
    static EVENT_INTEMPLATEMSG_STATUS_FAILED: string;
    private msgId;
    private status;
    constructor(toUserName: string, fromUserName: string, createTime: number, event: string);
    get getMsgId(): string;
    set setMsgId(msgId: string);
    get getStatus(): string;
    set setStatus(status: string);
}
