import { JwtService } from '@nestjs/jwt'; import { IUser, UserLoginReturnData } from '@energyweb/origin-backend-core'; import { UserService } from '../pods/user/user.service'; export interface IJWTPayload { id: number; email: string; } export declare class AuthService { private readonly userService; private readonly jwtService; constructor(userService: UserService, jwtService: JwtService); validateUser(email: string, unencryptedPassword: string): Promise; login(user: Omit): Promise; }