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