import { Epoch, phase0 } from "@lodestar/types"; /** * TODO: describe issue. Compute progressive target balances * Compute balances from zero, note this state could be mid-epoch so target balances != 0 * @param participation from `state.previousEpochParticipation.getAll()` * @param epoch either currentEpoch or previousEpoch * @param validators from `state.validators.getAllReadonlyValues()` */ export declare function sumTargetUnslashedBalanceIncrements(participation: number[], epoch: Epoch, validators: phase0.Validator[]): number; //# sourceMappingURL=targetUnslashedBalance.d.ts.map