import { Model } from '@loopback/repository'; /** * The type of the request used for requesting the reset of a password. */ export declare class RequestResetPasswordGrant extends Model { /** * The email of the user for which the password reset should be requested. */ email: string; }