import { UserRepository, TokenManager } from '../../../common/api'; import { ConfirmResetPasswordManager, DetailsResetPassword } from '../../api/LostPassword'; import { Account } from '../../api'; import { Simple } from '@zetapush/platform-legacy'; export declare class ConfirmResetPasswordManagerImpl implements ConfirmResetPasswordManager { private userRepository; private tokenManager; private legacyAuth; constructor(userRepository: UserRepository, tokenManager: TokenManager, legacyAuth: Simple); /** * Change the password of the specified user * @param accountId accountId of the user we want to change the password */ private changePassword; confirmResetPassword(detailsResetPassword: DetailsResetPassword): Promise; }