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