Import is just syntactic sugar. All they do is access things in other packages without specifying their full name. The code that is generated is exactly the same as if you had fully qualified everything. Thus, there is no performance limitation on import for execution.
This also applies to "implicit imports" (that is: java.lang): you do not pay any price for classes that you are not actually using.