import { UTXO } from '../utils/utxo';
export declare const Blockstream: {
    fetchUTXO: (testnet: boolean) => (txHash: string, vOut: number) => Promise<UTXO>;
    fetchUTXOs: (testnet: boolean) => (address: string, confirmations: number) => Promise<readonly UTXO[]>;
    broadcastTransaction: (testnet: boolean) => (txHex: string) => Promise<string>;
    fetchTXs: (testnet: boolean) => (address: string, confirmations?: number) => Promise<readonly UTXO[]>;
};
