import { Duration, type DurationSDKType } from '../../../../google/protobuf/duration.js'; import { BinaryReader, BinaryWriter } from '../../../../binary.js'; import { type JsonSafe } from '../../../../json-safe.js'; /** Module is the config object of the group module. */ export interface Module { /** * max_execution_period defines the max duration after a proposal's voting period ends that members can send a MsgExec * to execute the proposal. */ maxExecutionPeriod: Duration; /** * max_metadata_len defines the max length of the metadata bytes field for various entities within the group module. * Defaults to 255 if not explicitly set. */ maxMetadataLen: bigint; } export interface ModuleProtoMsg { typeUrl: '/cosmos.group.module.v1.Module'; value: Uint8Array; } /** Module is the config object of the group module. */ export interface ModuleSDKType { max_execution_period: DurationSDKType; max_metadata_len: bigint; } export declare const Module: { typeUrl: "/cosmos.group.module.v1.Module"; 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