import Long from "long"; import _m0 from "protobufjs/minimal"; import { Duration } from "../../../../google/protobuf/duration"; export declare const protobufPackage = "cosmos.group.module.v1"; /** 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 | undefined; /** * 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: Long; } export declare const Module: { encode(message: Module, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Module; fromJSON(object: any): Module; toJSON(message: Module): unknown; create(base?: DeepPartial): Module; fromPartial(object: DeepPartial): Module; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};