import { Bech32UtxoWallet } from '../../abstract/Bech32UtxoWallet/Bech32UtxoWallet';
import { Transports } from '../../Transports';
import { BitcoinInfo } from '../../../CurrencyInfo';
import { UtxoCurrencyUtils } from '../../../CurrencyUtils/abstract/UtxoCurrencyUtils/UtxoCurrencyUtils';
export declare class BitcoinWallet extends Bech32UtxoWallet<typeof BitcoinInfo> {
    constructor(utils: UtxoCurrencyUtils<typeof BitcoinInfo>, transports: Transports);
}
