import { Statistics } from '../Data'; import { ColumnType } from './ColumnType'; export declare type GetData = (stats: Statistics) => T; export declare class BaseColumn { protected _type: ColumnType; protected _name: string; protected _getData: GetData; get type(): ColumnType; get name(): string; get getData(): GetData; constructor(type: ColumnType, name: string, getData: GetData); }