import { Bitcoind } from '../../types'; type VerifyTxOutProofParams = { bitcoind: Bitcoind; proof: string; }; /** * verifytxoutproof "proof" * * Verifies that a proof points to a transaction in a block, returning the transaction it commits to * and throwing an RPC error if the block is not in our best chain * */ export declare function verifyTxOutProof(params: VerifyTxOutProofParams): Promise; export {};