Visual Basic 2010 - how do I use class libraries?

Ok so I have my main app in my project and in the same project I have a class library named “MonsterDatabase” How would I use a class called “Akantor” within my “MonsterDatabase” class-library?

I have tried

imports MonsterDatabase

private akantor as New Akantor

but that fails to work. Any suggestions?