import { Currency } from './currency';
import { NativeCurrency } from './nativeCurrency';
import { Token } from './token';
/**
 * AMB is the main usage of a 'native' currency
 */
export declare class Amber extends NativeCurrency {
    protected constructor(chainId: number);
    get wrapped(): Token;
    private static _etherCache;
    static onChain(chainId: number): Amber;
    equals(other: Currency): boolean;
}
