import { Rpc } from "../../../../../helpers"; import { MsgRegisterInterchainAccount, MsgRegisterInterchainAccountResponse, MsgSendTx, MsgSendTxResponse, MsgUpdateParams, MsgUpdateParamsResponse } from "./tx"; /** Msg defines the 27-interchain-accounts/controller Msg service. */ export 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; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); registerInterchainAccount(request: MsgRegisterInterchainAccount): Promise; sendTx(request: MsgSendTx): Promise; updateParams(request: MsgUpdateParams): Promise; } export declare const createClientImpl: (rpc: Rpc) => MsgClientImpl;