interface ChatMessage { id: string; timestamp: number; message: string; editTimestamp?: number; generated?: boolean; } export type { ChatMessage };