import { TableColumnInterface } from "./table-column-interface";
export declare class TableDataColumn implements TableColumnInterface {
    display: string;
    variable: string;
    filter: string;
    sortable: boolean;
    constructor(display: string, variable: string, filter: string, sortable?: boolean);
    getColumnName(): string;
    getType(): string;
    render(data: any): any;
}
