import { UserCreateDTO } from "./auth.dto"; import { AuthService } from "./auth.service"; import { AuthenticatedReq } from "./auth.types"; export declare class AuthController { private authService; constructor(authService: AuthService); login(req: AuthenticatedReq): Promise<{ access: string; }>; register(data: UserCreateDTO): Promise; }