import type { ClaimableAmounts, GetAllClaimableAmounts } from "./types"; /** * Rewards per second */ export interface RewardRates { timeT0Ms: number; amountsT0: ClaimableAmounts; pools: (number | null)[]; total: number; } /** * Calculate the rewards per second of all pools/total * @returns */ export declare const calculateRewardRates: (getAllClaimableAmounts: GetAllClaimableAmounts, msBetweenCheckpoints?: number) => RewardRates | null; //# sourceMappingURL=calculateRewardRates.d.ts.map