import { UserCreateDTO } from "./auth.dto"; import { IUserService } from "./auth.types"; import { JwtService } from "./jwt.service"; export declare class AuthService { private userService; private jwtService; constructor(userService: IUserService, jwtService: JwtService); validateUsernamePassword(username: string, password: string): Promise; createUser(data: UserCreateDTO): Promise; validateJwtPayload(payload: any): Promise; generateAccessToken(user: any): Promise; }