import { Chain } from "../../types/chain.js"; import { SignPsbtParameters, SignPsbtReturnType } from "../../transports/types.js"; import { Account } from "../../types/account.js"; import { Transport } from "../../types/transport.js"; import { Client } from "../../types/client.js"; import { SendUTXOTransactionParameters, SendUTXOTransactionReturnType } from "../../actions/sendUTXOTransaction.js"; //#region src/clients/decorators/wallet.d.ts type WalletActions = { /** * Creates, signs, and sends a new transaction to the network. */ sendUTXOTransaction: (args: SendUTXOTransactionParameters) => Promise; signPbst: (args: SignPsbtParameters) => Promise; }; declare function walletActions(client: Client): WalletActions; //#endregion export { WalletActions, walletActions }; //# sourceMappingURL=wallet.d.ts.map