import { BinaryReader, BinaryWriter } from "../../../../binary.js"; import { DeepPartial } from "../../../../helpers.js"; //#region src/cosmos/params/module/v1/module.d.ts /** * Module is the config object of the params module. * @name Module * @package cosmos.params.module.v1 * @see proto type: cosmos.params.module.v1.Module */ interface Module {} interface ModuleProtoMsg { typeUrl: "/cosmos.params.module.v1.Module"; value: Uint8Array; } /** * Module is the config object of the params module. * @name ModuleAmino * @package cosmos.params.module.v1 * @see proto type: cosmos.params.module.v1.Module */ interface ModuleAmino {} interface ModuleAminoMsg { type: "cosmos-sdk/Module"; value: ModuleAmino; } /** * Module is the config object of the params module. * @name Module * @package cosmos.params.module.v1 * @see proto type: cosmos.params.module.v1.Module */ declare const Module: { typeUrl: string; aminoType: string; is(o: any): o is Module; isAmino(o: any): o is ModuleAmino; encode(_: Module, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Module; fromPartial(_: DeepPartial): Module; fromAmino(_: ModuleAmino): Module; toAmino(_: 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 };