import { AuthService } from './auth.service';
import { LoginDto } from './dto/login.dto';
export declare class AuthController {
    private readonly authService;
    constructor(authService: AuthService);
    login(loginDto: LoginDto): Promise<{
        message: string;
        accessToken: string;
        user: {
            _id: any;
            email: any;
            name: any;
            role: any;
        };
    }>;
}
