import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.staking.module.v1"; /** Module is the config object of the staking module. */ export interface Module { /** * hooks_order specifies the order of staking hooks and should be a list * of module names which provide a staking hooks instance. If no order is * provided, then hooks will be applied in alphabetical order of module names. */ hooksOrder: string[]; /** authority defines the custom module authority. If not set, defaults to the governance module. */ authority: string; /** bech32_prefix_validator is the bech32 validator prefix for the app. */ bech32PrefixValidator: string; /** bech32_prefix_consensus is the bech32 consensus node prefix for the app. */ bech32PrefixConsensus: string; } 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 {};