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