import { TelescopeGeneratedType } from "../../../types.js"; import { MsgCancelProposal, MsgDeposit, MsgExecLegacyContent, MsgSubmitProposal, MsgUpdateParams, MsgVote, MsgVoteWeighted } from "./tx.js"; //#region src/cosmos/gov/v1/tx.registry.d.ts declare const registry: ReadonlyArray<[string, TelescopeGeneratedType]>; declare const MessageComposer: { encoded: { submitProposal(value: MsgSubmitProposal): { typeUrl: string; value: Uint8Array; }; execLegacyContent(value: MsgExecLegacyContent): { typeUrl: string; value: Uint8Array; }; vote(value: MsgVote): { typeUrl: string; value: Uint8Array; }; voteWeighted(value: MsgVoteWeighted): { typeUrl: string; value: Uint8Array; }; deposit(value: MsgDeposit): { typeUrl: string; value: Uint8Array; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: Uint8Array; }; cancelProposal(value: MsgCancelProposal): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { submitProposal(value: MsgSubmitProposal): { typeUrl: string; value: MsgSubmitProposal; }; execLegacyContent(value: MsgExecLegacyContent): { typeUrl: string; value: MsgExecLegacyContent; }; vote(value: MsgVote): { typeUrl: string; value: MsgVote; }; voteWeighted(value: MsgVoteWeighted): { typeUrl: string; value: MsgVoteWeighted; }; deposit(value: MsgDeposit): { typeUrl: string; value: MsgDeposit; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; cancelProposal(value: MsgCancelProposal): { typeUrl: string; value: MsgCancelProposal; }; }; fromPartial: { submitProposal(value: MsgSubmitProposal): { typeUrl: string; value: MsgSubmitProposal; }; execLegacyContent(value: MsgExecLegacyContent): { typeUrl: string; value: MsgExecLegacyContent; }; vote(value: MsgVote): { typeUrl: string; value: MsgVote; }; voteWeighted(value: MsgVoteWeighted): { typeUrl: string; value: MsgVoteWeighted; }; deposit(value: MsgDeposit): { typeUrl: string; value: MsgDeposit; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; cancelProposal(value: MsgCancelProposal): { typeUrl: string; value: MsgCancelProposal; }; }; }; //#endregion export { MessageComposer, registry };