import { Network } from '@btc-vision/bitcoin';
export declare class AddressGenerator {
    static generatePKSH(sha256Hash: Buffer, network: Network): string;
    static generateTaprootAddress(pubKey: Buffer, network: {
        bech32: string;
    }): string;
    private static toSegwitAddress;
}
