import { phase0 } from "@lodestar/types"; import { CachedBeaconStateAllForks } from "../types.js"; /** * Compute on-the-fly justified / finalized checkpoints. * - For phase0, we need to create the cache through beforeProcessEpoch * - For other forks, use the progressive balances inside EpochCache */ export declare function computeUnrealizedCheckpoints(state: CachedBeaconStateAllForks): { justifiedCheckpoint: phase0.Checkpoint; finalizedCheckpoint: phase0.Checkpoint; }; //# sourceMappingURL=computeUnrealizedCheckpoints.d.ts.map