In order for macros to reference symbols from other modules, support the same or similar syntax as `(import)` but transpile it to something like: ```javascript export const other = await (async () => { const { add } = await import('./one.mjs') return add })() ```