import { TableColumn } from "../table.column"; export declare class ProgressTableColumn extends TableColumn { color: string; mode: string; bufferValueColumn: string; width: number; height: number; constructor(column: string, title: string, color?: string, mode?: string, bufferValueColumn?: string); withMode(mode: string): ProgressTableColumn; withBufferValueColumn(bufferValueColumn: string): ProgressTableColumn; withWidth(width: number): this; withHeight(height: number): this; getQuantity(elementData: any): any; } export declare class QuotaProgressTableColumn extends ProgressTableColumn { currentColumn: string; constructor(column: string, currentColumn: string, title: string); getQuantity(elementData: any): string; }