import * as bitcoin from 'bitcoinjs-lib'; import { BIP32Interface } from 'bip32'; export declare class BitcoinTaprootAddress { protected readonly value: string; private constructor(); static fromBip32(bip32: BIP32Interface): BitcoinTaprootAddress; static fromPayment(payment: bitcoin.Payment): BitcoinTaprootAddress; asString(): string; }