import { Bitcoind } from '../../types.js';
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<any>;
export {};
//# sourceMappingURL=verify-tx-out-proof.d.ts.map