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