import * as types from '@hyperlane-xyz/cosmos-types'; type RawCosmosModuleMessageRegistry = { [Key in keyof Omit]: { proto: { type: string; converter: T[Key]; }; amino?: { type: string; converter?: T[Key]; }; }; }; type CoreCosmosModuleMessageRegistry = RawCosmosModuleMessageRegistry; type IsmCosmosModuleMessageRegistry = RawCosmosModuleMessageRegistry; type PostDispatchCosmosModuleMessageRegistry = RawCosmosModuleMessageRegistry; type WarpTransactionCosmosModuleMessageRegistry = RawCosmosModuleMessageRegistry; type CosmosModuleMessageRegistry = CoreCosmosModuleMessageRegistry & IsmCosmosModuleMessageRegistry & PostDispatchCosmosModuleMessageRegistry & WarpTransactionCosmosModuleMessageRegistry; export declare const COSMOS_MODULE_MESSAGE_REGISTRY: CosmosModuleMessageRegistry; export {}; //# sourceMappingURL=registry.d.ts.map