import BaseClient from '../../base'; /** * For usage, see {@link ContactsApi.updateUserPassword} */ export interface UpdateUserPasswordApi { /** * @param oldPassword - Old password of the user * @param newPassword - New password of the user */ (oldPassword: string, newPassword: string): Promise; } declare const updateUserPasswordBuilder: (applozicClient: BaseClient) => UpdateUserPasswordApi; export default updateUserPasswordBuilder;