import { ChatRoom } from "./chat-room.entity";
export declare enum ParticipantType {
    TEAM_MEMBER = "team_member",
    CUSTOMER = "customer"
}
export declare class ChatParticipant {
    id: number;
    chat_room_id: number;
    participant_type: ParticipantType;
    participant_id: number;
    joined_at: Date;
    chat_room: ChatRoom;
}
