import { type EncodeObject } from '@cosmjs/proto-signing'; import { type coreTx } from '@hyperlane-xyz/cosmos-types'; import { type COSMOS_MODULE_MESSAGE_REGISTRY as R } from '../../registry.js'; export interface MsgCreateMailboxEncodeObject extends EncodeObject { readonly typeUrl: typeof R.MsgCreateMailbox.proto.type; readonly value: Partial; } export interface MsgSetMailboxEncodeObject extends EncodeObject { readonly typeUrl: typeof R.MsgSetMailbox.proto.type; readonly value: Partial; } export interface MsgProcessMessageEncodeObject extends EncodeObject { readonly typeUrl: typeof R.MsgProcessMessage.proto.type; readonly value: Partial; } //# sourceMappingURL=messages.d.ts.map