import { type EncodeObject } from '@cosmjs/proto-signing'; import { type warpTx } from '@hyperlane-xyz/cosmos-types'; import { type COSMOS_MODULE_MESSAGE_REGISTRY as R } from '../../registry.js'; export interface MsgCreateCollateralTokenEncodeObject extends EncodeObject { readonly typeUrl: typeof R.MsgCreateCollateralToken.proto.type; readonly value: Partial; } export interface MsgCreateSyntheticTokenEncodeObject extends EncodeObject { readonly typeUrl: typeof R.MsgCreateSyntheticToken.proto.type; readonly value: Partial; } export interface MsgSetTokenEncodeObject extends EncodeObject { readonly typeUrl: typeof R.MsgSetToken.proto.type; readonly value: Partial; } export interface MsgEnrollRemoteRouterEncodeObject extends EncodeObject { readonly typeUrl: typeof R.MsgEnrollRemoteRouter.proto.type; readonly value: Partial; } export interface MsgUnrollRemoteRouterEncodeObject extends EncodeObject { readonly typeUrl: typeof R.MsgUnrollRemoteRouter.proto.type; readonly value: Partial; } export interface MsgRemoteTransferEncodeObject extends EncodeObject { readonly typeUrl: typeof R.MsgRemoteTransfer.proto.type; readonly value: Partial; } //# sourceMappingURL=messages.d.ts.map