import { MsgExec, MsgExecAmino, MsgGrant, MsgGrantAmino, MsgRevoke, MsgRevokeAmino } from "./tx.js"; //#region src/cosmos/authz/v1beta1/tx.amino.d.ts declare const AminoConverter: { "/cosmos.authz.v1beta1.MsgGrant": { aminoType: string; toAmino: (message: MsgGrant) => MsgGrantAmino; fromAmino: (object: MsgGrantAmino) => MsgGrant; }; "/cosmos.authz.v1beta1.MsgExec": { aminoType: string; toAmino: (message: MsgExec) => MsgExecAmino; fromAmino: (object: MsgExecAmino) => MsgExec; }; "/cosmos.authz.v1beta1.MsgRevoke": { aminoType: string; toAmino: (message: MsgRevoke) => MsgRevokeAmino; fromAmino: (object: MsgRevokeAmino) => MsgRevoke; }; }; //#endregion export { AminoConverter };