import { TemplateRef } from '@angular/core';
import { TextAlign } from '../../core/enums/text';
export declare class TableColumnComponent {
    tableCellTemplate: TemplateRef<any>;
    title: string;
    width: string;
    align: TextAlign;
    orderBy: string;
}
