import { User } from './user.entity'; import { Conversation } from './conversation.entity'; export declare enum MessageReferenceType { RESOURCE = "RESOURCE", ACTIVITY = "ACTIVITY" } export declare class Message { id: number; conversationId: number; senderId: number; content: string; referenceType: MessageReferenceType | null; referenceId: number | null; referenceLabel: string | null; referenceUrl: string | null; createdAt: Date; conversation: Conversation; sender: User; }