import { Currency } from "./currency";
import { NativeCurrency } from "./nativeCurrency";
import { Token } from "./token";
export declare class Ether extends NativeCurrency {
    constructor();
    get wrapped(): Token;
    equals(other: Currency): boolean;
}
