import * as z from "zod/v4"; export type UpdateUserProfileRequest = { /** * Display name */ name?: string | undefined; }; /** @internal */ export type UpdateUserProfileRequest$Outbound = { name?: string | undefined; }; /** @internal */ export declare const UpdateUserProfileRequest$outboundSchema: z.ZodType; export declare function updateUserProfileRequestToJSON(updateUserProfileRequest: UpdateUserProfileRequest): string; //# sourceMappingURL=updateuserprofile.d.ts.map