import { IncomingMessage } from '../incoming-message';
export interface ChatMessage {
    id: string;
    fromId?: string;
    timestamp: number;
    toId?: string;
    isLog?: boolean;
    text: string;
    replyId?: string;
    reply?: ChatMessage;
    user?: any;
}
export declare class ChatMessageResponse extends IncomingMessage {
    message: ChatMessage;
    static id: string;
    constructor(message: ChatMessage);
}
