import { Stats } from '../interfaces/Stats';
export declare class OverviewStats {
    private stats;
    constructor(stats: {
        [key: string]: Stats;
    });
    getSeasonReward(): string;
    getSeasonRewardIcon(): string;
    getTotalWins(): number;
    getTotalShots(): number;
    getTotalGoals(): number;
    getTotalSaves(): number;
    getTotalAssists(): number;
    getTotalMVPs(): number;
    getGoalShotRatio(): number;
}
