import BytesType from "./bytes-type"; export default class EthereumAddress extends BytesType { constructor(ethereumAddress: string | Uint8Array); equals(other: EthereumAddress): boolean; toHexString(): string; protected getRequiredByteLength(): number; }