import { TelescopeGeneratedType } from "../../../types.js"; import { MsgGrantAllowance, MsgPruneAllowances, MsgRevokeAllowance } from "./tx.js"; //#region src/cosmos/feegrant/v1beta1/tx.registry.d.ts declare const registry: ReadonlyArray<[string, TelescopeGeneratedType]>; declare const MessageComposer: { encoded: { grantAllowance(value: MsgGrantAllowance): { typeUrl: string; value: Uint8Array; }; revokeAllowance(value: MsgRevokeAllowance): { typeUrl: string; value: Uint8Array; }; pruneAllowances(value: MsgPruneAllowances): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { grantAllowance(value: MsgGrantAllowance): { typeUrl: string; value: MsgGrantAllowance; }; revokeAllowance(value: MsgRevokeAllowance): { typeUrl: string; value: MsgRevokeAllowance; }; pruneAllowances(value: MsgPruneAllowances): { typeUrl: string; value: MsgPruneAllowances; }; }; fromPartial: { grantAllowance(value: MsgGrantAllowance): { typeUrl: string; value: MsgGrantAllowance; }; revokeAllowance(value: MsgRevokeAllowance): { typeUrl: string; value: MsgRevokeAllowance; }; pruneAllowances(value: MsgPruneAllowances): { typeUrl: string; value: MsgPruneAllowances; }; }; }; //#endregion export { MessageComposer, registry };