Tested version: 0.23.0 ```ts import {} from 'bar'; declare module 'foo' { interface Foo {} const foo = 42; } ``` ``` require('oxc-transform').isolatedDeclaration('hello.ts', ` import "bar"; declare module "foo" { interface Foo {} const foo = 42; } `) { sourceText: 'import "bar";\nexport {};\n', errors: [] } ``` Expected: ```ts import "bar"; declare module "foo" { interface Foo {} const foo = 42; } ``` Actual: ```ts import "bar"; export {}; ```