import { TelescopeGeneratedType } from "../../../../../types.js"; import { MsgRegisterInterchainAccount, MsgSendTx, MsgUpdateParams } from "./tx.js"; //#region src/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts declare const registry: ReadonlyArray<[string, TelescopeGeneratedType]>; declare const MessageComposer: { encoded: { registerInterchainAccount(value: MsgRegisterInterchainAccount): { typeUrl: string; value: Uint8Array; }; sendTx(value: MsgSendTx): { typeUrl: string; value: Uint8Array; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { registerInterchainAccount(value: MsgRegisterInterchainAccount): { typeUrl: string; value: MsgRegisterInterchainAccount; }; sendTx(value: MsgSendTx): { typeUrl: string; value: MsgSendTx; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; fromPartial: { registerInterchainAccount(value: MsgRegisterInterchainAccount): { typeUrl: string; value: MsgRegisterInterchainAccount; }; sendTx(value: MsgSendTx): { typeUrl: string; value: MsgSendTx; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; }; //#endregion export { MessageComposer, registry };