import { BinaryReader, BinaryWriter } from '../../../../binary.js'; import { type JsonSafe } from '../../../../json-safe.js'; /** * Module is the config object of the consensus module. * @name Module * @package cosmos.protocolpool.module.v1 * @see proto type: cosmos.protocolpool.module.v1.Module */ export interface Module { /** * authority defines the custom module authority. If not set, defaults to the governance module. */ authority: string; } export interface ModuleProtoMsg { typeUrl: '/cosmos.protocolpool.module.v1.Module'; value: Uint8Array; } /** * Module is the config object of the consensus module. * @name ModuleSDKType * @package cosmos.protocolpool.module.v1 * @see proto type: cosmos.protocolpool.module.v1.Module */ export interface ModuleSDKType { authority: string; } /** * Module is the config object of the consensus module. * @name Module * @package cosmos.protocolpool.module.v1 * @see proto type: cosmos.protocolpool.module.v1.Module */ export declare const Module: { typeUrl: "/cosmos.protocolpool.module.v1.Module"; aminoType: "cosmos-sdk/Module"; is(o: any): o is Module; isSDK(o: any): o is ModuleSDKType; encode(message: Module, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Module; fromJSON(object: any): Module; toJSON(message: Module): JsonSafe; fromPartial(object: Partial): Module; fromProtoMsg(message: ModuleProtoMsg): Module; toProto(message: Module): Uint8Array; toProtoMsg(message: Module): ModuleProtoMsg; }; //# sourceMappingURL=module.d.ts.map