export interface UpdateUserPasswordOptions { userId: string; password: string; } export interface SerializedUpdateUserPasswordOptions { password: string; }