When generating JavaScript/TypeScript for a very simple C# struct: ` [JSExport] public struct Interface { ...` In the .d.ts file following is generated: ``` import './System.Collections'; import './System.Runtime'; export class Interface extends ValueType {... ``` `ValueType` is unknown to the typescript compiler: <img width="388" height="100" alt="Image" src="https://github.com/user-attachments/assets/98e0a890-dc35-4bf1-8d82-afa4a95a3e09" /> Where is the TypeScript definition for ValueType or how can I avoid the TypeScript compiler error? Obviously there is no issue during runtime. Is this an issue or do I overlook something?