The situation:

Trying to use the Airwallex Payment Elements JS library (v0.2.103) with a default import, like `import Airwallex from 'airwallex-payment-elements'`, fails at build time. The bundler reports that the package has no default export. The reporter was following the docs and just wanted to call redirectToCheckout for a hosted payment page.

What actually fixes it (verified in the thread):

The package has no default export in that version, so the default import fails. An Airwallex maintainer confirmed the fix: use the named imports instead.

```js
import { redirectToCheckout, loadAirwallex } from 'airwallex-payment-elements';
```

One more thing the maintainer clarified: you do need to call `loadAirwallex` before `redirectToCheckout`. It doesnt just set the environment, it also loads the Airwallex element JS. The reporter confirmed the named-import version worked. The team said they would fix the default export in a later release.