import { StdFee } from "../../../types.js"; import { MsgMultiSend, MsgSend, MsgSetSendEnabled, MsgUpdateParams } from "./tx.js"; import "../../../index.js"; import * as _interchainjs_cosmos0 from "@interchainjs/cosmos"; import * as _interchainjs_types0 from "@interchainjs/types"; //#region src/cosmos/bank/v1beta1/tx.rpc.func.d.ts /** * Send defines a method for sending coins from one account to another account. * @name send * @package cosmos.bank.v1beta1 * @see proto service: cosmos.bank.v1beta1.Send */ declare const send: (client: _interchainjs_cosmos0.ISigningClient, signerAddress: string, message: MsgSend | MsgSend[], fee: StdFee | "auto", memo: string) => Promise<_interchainjs_types0.DeliverTxResponse>; /** * MultiSend defines a method for sending coins from some accounts to other accounts. * @name multiSend * @package cosmos.bank.v1beta1 * @see proto service: cosmos.bank.v1beta1.MultiSend */ declare const multiSend: (client: _interchainjs_cosmos0.ISigningClient, signerAddress: string, message: MsgMultiSend | MsgMultiSend[], fee: StdFee | "auto", memo: string) => Promise<_interchainjs_types0.DeliverTxResponse>; /** * UpdateParams defines a governance operation for updating the x/bank module parameters. * The authority is defined in the keeper. * @name updateParams * @package cosmos.bank.v1beta1 * @see proto service: cosmos.bank.v1beta1.UpdateParams */ declare const updateParams: (client: _interchainjs_cosmos0.ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: StdFee | "auto", memo: string) => Promise<_interchainjs_types0.DeliverTxResponse>; /** * SetSendEnabled is a governance operation for setting the SendEnabled flag * on any number of Denoms. Only the entries to add or update should be * included. Entries that already exist in the store, but that aren't * included in this message, will be left unchanged. * @name setSendEnabled * @package cosmos.bank.v1beta1 * @see proto service: cosmos.bank.v1beta1.SetSendEnabled */ declare const setSendEnabled: (client: _interchainjs_cosmos0.ISigningClient, signerAddress: string, message: MsgSetSendEnabled | MsgSetSendEnabled[], fee: StdFee | "auto", memo: string) => Promise<_interchainjs_types0.DeliverTxResponse>; //#endregion export { multiSend, send, setSendEnabled, updateParams };