///
import { SubstrateAccountId, SubstrateAddress } from './SubstrateAddress';
export declare class SubstrateEthAddress implements SubstrateAddress {
static createPlaceholder(): SubstrateEthAddress;
static from(accountId: SubstrateAccountId): SubstrateEthAddress;
static fromBytes(publicKeyOrAddress: string | Uint8Array | Buffer): SubstrateEthAddress;
static fromPublicKey(publicKey: string | Uint8Array | Buffer): SubstrateEthAddress;
private readonly value;
constructor(value: string);
compare(other: SubstrateAccountId): number;
asString(): string;
getBufferBytes(): Buffer;
getHexBytes(): string;
}