import { TxRpc } from "../../../../types.js"; import { MsgTransfer, MsgTransferResponse, MsgUpdateParams, MsgUpdateParamsResponse } from "./tx.js"; //#region src/ibc/applications/transfer/v1/tx.rpc.msg.d.ts /** Msg defines the ibc/transfer Msg service. */ interface Msg { /** Transfer defines a rpc handler method for MsgTransfer. */ transfer(request: MsgTransfer): Promise; /** UpdateParams defines a rpc handler for MsgUpdateParams. */ updateParams(request: MsgUpdateParams): Promise; } declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: TxRpc); transfer: (request: MsgTransfer) => Promise; updateParams: (request: MsgUpdateParams) => Promise; } declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl; //#endregion export { Msg, MsgClientImpl, createClientImpl };