import { Model } from '@loopback/repository'; /** * The type of the request used for resetting a password. */ export declare class ConfirmResetPassword extends Model { /** * The reset password token. */ resetToken: string; /** * The new password of the user. */ password: string; }