import { Entity } from '../@shared/entity'; import { IRecoverPasswordResponse } from './interfaces/recover-password.interface'; import { IValidateHashParams, IValidateHashResponse } from './interfaces/validate-hash.interface'; export declare class Usuarios extends Entity { validateHash(params: IValidateHashParams): Promise; changePassword(password: string): Promise; recoverPassword(email: string): Promise; }