Currently, I am facing a challenge while trying to import the Babylon library into my TypeScript files. Typically, adding 'export' in front of the class would suffice, but the library's structure begins with Declare Module BABYLON{ ...
, which prevents me from using that approach. Upon trying to import it into another class, I encounter an error indicating that Babylon is not recognized as a module. Are there any recommendations on how to resolve this issue? (I also have access to webpack if needed).