import { GeneratedType, Registry } from "@cosmjs/proto-signing"; import { MsgSetVersion } from "./tx"; export declare const registry: ReadonlyArray<[string, GeneratedType]>; export declare const load: (protoRegistry: Registry) => void; export declare const MessageComposer: { encoded: { setVersion(value: MsgSetVersion): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { setVersion(value: MsgSetVersion): { typeUrl: string; value: MsgSetVersion; }; }; toJSON: { setVersion(value: MsgSetVersion): { typeUrl: string; value: import("../../..").JsonSafe; }; }; fromJSON: { setVersion(value: any): { typeUrl: string; value: MsgSetVersion; }; }; fromPartial: { setVersion(value: MsgSetVersion): { typeUrl: string; value: MsgSetVersion; }; }; };