import { ConfidenceLevel } from '../Mathematics'; import { StatisticColumn } from './StatisticColumn'; export declare class Column { static readonly Mean: StatisticColumn; static readonly Error: StatisticColumn; static readonly StdDev: StatisticColumn; static readonly StdErr: StatisticColumn; static readonly Min: StatisticColumn; static readonly Q1: StatisticColumn; static readonly Median: StatisticColumn; static readonly Q3: StatisticColumn; static readonly Max: StatisticColumn; static readonly Ops: StatisticColumn; static CIError(level?: ConfidenceLevel): StatisticColumn; static readonly Iterations: StatisticColumn; }