import { BaseCurrency } from'./baseCurrency'/**
* Represents the native currency of the chain on which it resides, e.g.
*/
export abstractclassNativeCurrencyextendsBaseCurrency{
publicreadonly isNative: true = truepublicreadonly isToken: false = false
}