// TODO: DELETE and replace with actual types export interface ChatMessageResponse { message: string; } export interface ChatPart { text?: string; type: string; }