import { Bitcoind } from '../../types'; type GetTxSpendingPrevoutParams = { bitcoind: Bitcoind; outputs: Array; }; /** * gettxspendingprevout [{"txid":"hex","vout":n},...] * * Scans the mempool to find transactions spending any of the given outputs * */ export declare function getTxSpendingPrevout(params: GetTxSpendingPrevoutParams): Promise; export {};