import { OnInit } from '@angular/core'; import { AwesomeDataTableRow } from './../row/row.component'; import { CellCallback, AwesomeDataTableSortCallback } from './../shared'; export declare class AwesomeDataTableColumn implements OnInit { header: string; sortable: boolean; resizable: boolean; property: string; styleClass: string; cellColors: CellCallback; customSort: AwesomeDataTableSortCallback; width: number | string; visible: boolean; alignRight: boolean; cellTemplate: any; headerTemplate: any; private styleClassObject; getCellColor(row: AwesomeDataTableRow, index: number): string; ngOnInit(): void; private initCellClass(); }