import { CreateAuthenticationDto } from './dto/create-authentication.dto';
import { UtilisateursService } from '../utilisateurs/utilisateurs.service';
import { JwtService } from '@nestjs/jwt';
export declare class AuthenticationService {
    private utulisateurService;
    private jwtService;
    constructor(utulisateurService: UtilisateursService, jwtService: JwtService);
    login(createAuthenticationDto: CreateAuthenticationDto): Promise<any>;
    validateToken(token: string): any;
}
