import { RelationMappings } from 'objection';
import BaseModel from '../base.model';
import ChatMessage from '../chatMessage/chatMessage.model';
declare class ChatChannel extends BaseModel {
    chatType: string;
    relatedObjectId: string;
    messages: ChatMessage[];
    constructor();
    static get tableName(): string;
    static get schema(): object;
    static get relationMappings(): RelationMappings;
}
export default ChatChannel;
//# sourceMappingURL=chatChannel.model.d.ts.map