import { Chain } from "../types/chain.js"; import { UTXOSchema } from "../transports/types.js"; import { Account } from "../types/account.js"; import { Transport } from "../types/transport.js"; import { Client } from "../types/client.js"; //#region src/actions/sendUTXOTransaction.d.ts type SendUTXOTransactionParameters = { /** The hex string of the raw transaction. */hex: string; /** Rejects transactions whose fee rate is higher than the specified value, expressed in BTC/kB. Set to 0 to accept any fee rate. Default = 0.10 */ maxFeeRate?: number; }; type SendUTXOTransactionReturnType = string; declare function sendUTXOTransaction(client: Client, { hex, maxFeeRate }: SendUTXOTransactionParameters): Promise; //#endregion export { SendUTXOTransactionParameters, SendUTXOTransactionReturnType, sendUTXOTransaction }; //# sourceMappingURL=sendUTXOTransaction.d.ts.map