declare class ADNLAddress {
    private _publicKey;
    constructor(publicKey: Uint8Array | string);
    get publicKey(): Uint8Array;
    get hash(): Uint8Array;
    private static isHex;
    private static isBase64;
    private static isBytes;
}
export { ADNLAddress };
