import { TxRpc } from "../../../../../types.js"; import { MsgRegisterInterchainAccount, MsgRegisterInterchainAccountResponse, MsgSendTx, MsgSendTxResponse, MsgUpdateParams, MsgUpdateParamsResponse } from "./tx.js"; //#region src/ibc/applications/interchain_accounts/controller/v1/tx.rpc.msg.d.ts /** Msg defines the 27-interchain-accounts/controller Msg service. */ interface Msg { /** RegisterInterchainAccount defines a rpc handler for MsgRegisterInterchainAccount. */ registerInterchainAccount(request: MsgRegisterInterchainAccount): Promise; /** SendTx defines a rpc handler for MsgSendTx. */ sendTx(request: MsgSendTx): Promise; /** UpdateParams defines a rpc handler for MsgUpdateParams. */ updateParams(request: MsgUpdateParams): Promise; } declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: TxRpc); registerInterchainAccount: (request: MsgRegisterInterchainAccount) => Promise; sendTx: (request: MsgSendTx) => Promise; updateParams: (request: MsgUpdateParams) => Promise; } declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl; //#endregion export { Msg, MsgClientImpl, createClientImpl };