import { Chat } from "./Chat"; import { Attachment } from "./Attachment"; export declare enum ChatRole { USER = "USER", ASSISTANT = "ASSISTANT" } export interface Message { id: number; content: string; role: ChatRole; chatId: number; chat: Chat; attachments: Attachment[]; createdAt: Date; }