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