import { BinaryReader, BinaryWriter } from "../../../binary"; import { JsonSafe } from "../../../json-safe"; /** Params defines the parameters for the module. */ export interface Params { epochBlocks: bigint; epochsToSave: bigint; latestParamChange: bigint; } export interface ParamsProtoMsg { typeUrl: "/lavanet.lava.epochstorage.Params"; value: Uint8Array; } /** Params defines the parameters for the module. */ export interface ParamsAmino { epochBlocks?: string; epochsToSave?: string; latestParamChange?: string; } export interface ParamsAminoMsg { type: "/lavanet.lava.epochstorage.Params"; value: ParamsAmino; } /** Params defines the parameters for the module. */ export interface ParamsSDKType { epochBlocks: bigint; epochsToSave: bigint; latestParamChange: bigint; } export declare const Params: { typeUrl: string; encode(message: Params, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): JsonSafe; fromPartial(object: Partial): Params; fromAmino(object: ParamsAmino): Params; toAmino(message: Params): ParamsAmino; fromAminoMsg(object: ParamsAminoMsg): Params; fromProtoMsg(message: ParamsProtoMsg): Params; toProto(message: Params): Uint8Array; toProtoMsg(message: Params): ParamsProtoMsg; };