import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "xpla.reward.v1beta1"; /** Params defines the set of params for the reward module. */ export interface Params { feePoolRate: string; communityPoolRate: string; reserveRate: string; reserveAccount: string; rewardDistributeAccount: string; } export declare const Params: { encode(message: Params, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; create(base?: DeepPartial): Params; fromPartial(object: DeepPartial): Params; }; 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 {};