import { CoreModel } from '../core/core.model'; export declare class DatatableColumnModel extends CoreModel { /** * Column name */ name?: string; /** * Row property name by which rows will be sorted */ sortBy?: string; /** * Column width */ width?: string; /** * Column header cell alignment */ headerAlignment?: string; /** * Column row cell alignment */ cellAlignment?: string; /**@hidden */ constructor(values?: Object); }