import { Statistics } from '../Data'; import { UnitType } from '../Tools/UnitType'; import { BaseColumn } from './BaseColumn'; import { ColumnType } from './ColumnType'; export declare type Calc = (stats: Statistics) => number; export declare class StatisticColumn extends BaseColumn { private readonly _desc; private readonly _unitType; get desc(): string; get unitType(): UnitType; constructor(type: ColumnType, name: string, desc: string, calc: Calc, unit: UnitType); }