You should be able to import it globally by adding @_exported before the import.
@_exported import MyPodModuleName
However, like the other answer mentions, doing that for an entire module is not recommended, because it introduces implicit coupling between modules.
Hence instead try something like:
import Foundation
@_exported import class MyModuleName.MyClassName
@_exported import class MyModuleName.MyOtherClass