Importing and instantiating, whats the difference?

how important is importing, like

import someClass;

because it seems that if you want to use the class like

var _someClass = new someClass();

it will work without importing it. is it just for efficiency purposes? should I import all the classed that I use?
dai2