import { JwtService } from '@nestjs/jwt'; import { UserData } from '../../user/entity/user.entity'; import { ReflectionHelper } from '../../../utils/service/reflection-helper.service'; export declare class AuthService { private jwtService; private reflectionHelper; constructor(jwtService: JwtService, reflectionHelper: ReflectionHelper); login(user: UserData): Promise<{ access_token: string; }>; fcmtoken(fcmtoken: string, loggedInUser: any, ip: string, browser: string, os: string): Promise<{ message: string; }>; }