import { StatisticValue } from './statistic-value';
export declare class PlayerStatistic {
    playerId?: number;
    statistics?: StatisticValue[];
    playerName?: string;
    teamId?: number;
    hasPlayed?: boolean;
}
