You don't export what you don't want to export. You cannot export what you don't mark it with `*`.
You can export the `pBox` but don't export the implementation `BoxOfStuff` and
Nim still happily checks whether the type is consistent or not.
Also you can limit imported symbol using from module with
from warehouse import pBox
