import { JwtService } from "@nestjs/jwt";
export declare class JwtUtilsService {
    private readonly jwtService;
    constructor(jwtService: JwtService);
    generateToken(payload: any): string;
    verifyToken(token: string): Promise<any>;
}
