import type { ChatMessage, LLMProvider } from '../types.js'; export interface UserModel { preferences: Record; expertise: string[]; communicationStyle: string; goals: string[]; history: string[]; updatedAt: string; } export declare function updateUserModel(messages: ChatMessage[], currentModel: UserModel, provider: LLMProvider, config: { model: string; }): Promise; //# sourceMappingURL=l4-user-model.d.ts.map