import { TokenService } from '@loopback/authentication'; import { UserProfile } from '@loopback/security'; export declare class JWTService implements TokenService { private jwtSecret; private jwtExpiresIn; constructor(jwtSecret: string, jwtExpiresIn: string); verifyToken(token: string): Promise; generateToken(userProfile: UserProfile): Promise; }