import { type UserModels } from "./types.js"; /** * Utility function to merge two user models, userModels2 will override userModels1 fields * It's used to: * - merge the static userModels computed from AI with the userModels provided in the client constructor as an option * - merge the userModels stored in the client with the userModels provided in a plan as an option */ export declare function mergeUserModels(userModels1: UserModels, userModels2: UserModels): UserModels;