export declare enum ChatAIRole { USER = 0, ASSISTANT = 1 } export interface ChatMessage { role: ChatAIRole; content: string; }