interface DailyScores {
    romanceScore: number;
    careerScore: number;
    wealthScore: number;
    magicScore: number;
    friendshipScore: number;
    healthScore: number;
}
interface MonthlyScores {
    [date: string]: DailyScores;
}
declare function calculateMonthlyScores(latitude?: number, longitude?: number): MonthlyScores;
export { calculateMonthlyScores, DailyScores, MonthlyScores };
//# sourceMappingURL=monthly-scores.d.ts.map