import { TelescopeGeneratedType } from "../../../types.js"; import { MsgExec, MsgGrant, MsgRevoke } from "./tx.js"; //#region src/cosmos/authz/v1beta1/tx.registry.d.ts declare const registry: ReadonlyArray<[string, TelescopeGeneratedType]>; declare const MessageComposer: { encoded: { grant(value: MsgGrant): { typeUrl: string; value: Uint8Array; }; exec(value: MsgExec): { typeUrl: string; value: Uint8Array; }; revoke(value: MsgRevoke): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { grant(value: MsgGrant): { typeUrl: string; value: MsgGrant; }; exec(value: MsgExec): { typeUrl: string; value: MsgExec; }; revoke(value: MsgRevoke): { typeUrl: string; value: MsgRevoke; }; }; fromPartial: { grant(value: MsgGrant): { typeUrl: string; value: MsgGrant; }; exec(value: MsgExec): { typeUrl: string; value: MsgExec; }; revoke(value: MsgRevoke): { typeUrl: string; value: MsgRevoke; }; }; }; //#endregion export { MessageComposer, registry };