import { BinaryReader, BinaryWriter } from "../../../binary"; import { JsonSafe } from "../../../json-safe"; /** Params defines the parameters for the module. */ export interface Params { epochBlocksOverlap: bigint; qoSWeight: string; recommendedEpochNumToCollectPayment: bigint; } export interface ParamsProtoMsg { typeUrl: "/lavanet.lava.pairing.Params"; value: Uint8Array; } /** Params defines the parameters for the module. */ export interface ParamsAmino { epochBlocksOverlap?: string; QoSWeight?: string; recommendedEpochNumToCollectPayment?: string; } export interface ParamsAminoMsg { type: "/lavanet.lava.pairing.Params"; value: ParamsAmino; } /** Params defines the parameters for the module. */ export interface ParamsSDKType { epochBlocksOverlap: bigint; QoSWeight: string; recommendedEpochNumToCollectPayment: 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; };