import { JwtService } from '@nestjs/jwt'; import { AuthModuleOptions, JWTAccessToken, JwtTokenGeneratorService } from '../auth.type'; export declare class JwtTokenGeneratorServiceImp implements JwtTokenGeneratorService { private jwtService; private options; constructor(jwtService: JwtService, options: AuthModuleOptions); generate(user: any): Promise; }