import { JwtService } from '@nestjs/jwt';
import { PrismaService } from 'src/prisma/prisma.service';
import { AuthEntity } from './entity/auth.entity';
export declare class AuthService {
    private prisma;
    private jwtService;
    constructor(prisma: PrismaService, jwtService: JwtService);
    private logger;
    login(email: string, password: string): Promise<AuthEntity>;
    validateToken(email: string, token: string): Promise<{
        responsecode: number;
        message: string;
    }>;
}
