import type { NoValue } from './NoValue'; /** * @type CurrencyCode * A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. */ export type CurrencyCode = NoValue | string;