/** * Bitcoin L1 tools * * These tools provide Bitcoin blockchain operations: * - get_btc_balance: Check BTC balance for an address * - get_btc_fees: Get current fee estimates * - get_btc_utxos: List UTXOs for an address * - transfer_btc: Send BTC to a recipient address * * Data is fetched from mempool.space API (no authentication required). * Transfer operations require an unlocked wallet. */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; export declare function registerBitcoinTools(server: McpServer): void; //# sourceMappingURL=bitcoin.tools.d.ts.map