import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "babylon.incentive"; /** * Params defines the parameters for the module, including portions of rewards * distributed to each type of stakeholder. Note that sum of the portions should * be strictly less than 1 so that the rest will go to Comet * validators/delegations adapted from * https://github.com/cosmos/cosmos-sdk/blob/release/v0.47.x/proto/cosmos/distribution/v1beta1/distribution.proto */ export interface Params { /** * btc_staking_portion is the portion of rewards that goes to Finality * Providers/delegations NOTE: the portion of each Finality * Provider/delegation is calculated by using its voting power and finality * provider's commission */ btcStakingPortion: 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; fromPartial, never>>(object: I): Params; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};