import { type CreateProfile, type User } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Updates the actor-controlled users name, optional last name, username, bio, and related profile fields after normalization and uniqueness checks. * The profile write and syncEvents hint share a sequence so every chat resolves the identity from one coherent durable version. */ export declare function userUpdateProfile(executor: DrizzleExecutor, userId: string, profile: CreateProfile): Promise; //# sourceMappingURL=userUpdateProfile.d.ts.map