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<IValidateHashResponse>;
    changePassword(password: string): Promise<null>;
    recoverPassword(email: string): Promise<IRecoverPasswordResponse>;
}
