import { BinaryReader, BinaryWriter } from "../../../../binary.js"; import { DeepPartial } from "../../../../helpers.js"; //#region src/cosmos/slashing/module/v1/module.d.ts /** * Module is the config object of the slashing module. * @name Module * @package cosmos.slashing.module.v1 * @see proto type: cosmos.slashing.module.v1.Module */ interface Module { /** * authority defines the custom module authority. If not set, defaults to the governance module. */ authority: string; } interface ModuleProtoMsg { typeUrl: "/cosmos.slashing.module.v1.Module"; value: Uint8Array; } /** * Module is the config object of the slashing module. * @name ModuleAmino * @package cosmos.slashing.module.v1 * @see proto type: cosmos.slashing.module.v1.Module */ interface ModuleAmino { /** * authority defines the custom module authority. If not set, defaults to the governance module. */ authority: string; } interface ModuleAminoMsg { type: "cosmos-sdk/Module"; value: ModuleAmino; } /** * Module is the config object of the slashing module. * @name Module * @package cosmos.slashing.module.v1 * @see proto type: cosmos.slashing.module.v1.Module */ declare const Module: { typeUrl: string; aminoType: string; is(o: any): o is Module; isAmino(o: any): o is ModuleAmino; encode(message: Module, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Module; fromPartial(object: DeepPartial): Module; fromAmino(object: ModuleAmino): Module; toAmino(message: Module): ModuleAmino; fromAminoMsg(object: ModuleAminoMsg): Module; toAminoMsg(message: Module): ModuleAminoMsg; fromProtoMsg(message: ModuleProtoMsg): Module; toProto(message: Module): Uint8Array; toProtoMsg(message: Module): ModuleProtoMsg; registerTypeUrl(): void; }; //#endregion export { Module, ModuleAmino, ModuleAminoMsg, ModuleProtoMsg };