import { Model } from '@loopback/repository'; /** * The Credentials used in the login. */ export declare class LoginCredentials extends Model { /** * The email of the user. */ email: string; /** * The password of the user. */ password: string; }