import { PubKey } from './internal.js'; /** * Aldea address * * An address is a 20 byte blake3 hash of a public key. It is encoded as a * string using Bech32m with the prefix `addr`. * * Example: * * addr1w9er02jhjq5yxzuc9n6fjqqq8nhqpuhsxe2kfp */ export declare class Address { readonly hash: Uint8Array; constructor(hash: Uint8Array); /** * Returns an Address from the given PubKey. */ static fromPubKey(pubKey: PubKey): Address; /** * Returns an Address from the encoded string. */ static fromString(str: string): Address; /** * Encodes the Address into a string. */ toString(): string; equals(other: Address): boolean; } //# sourceMappingURL=address.d.ts.map