import { ConfigService } from '../config/config.service.js'; import { UsersService } from '../users/users.service.js'; export declare class AuthController { private readonly configService; private readonly usersService; constructor(configService: ConfigService, usersService: UsersService); login(body: { username?: string; password?: string; }): Promise<{ success: boolean; user: { id: string; username: string; } | undefined; } | { success: boolean; user?: undefined; }>; }