import { TemplateRef } from '@angular/core'; export declare class ListViewGridColumnModel { template: TemplateRef; id: string; field: string; type: string; searchFunction: (data: any, searchText: string) => boolean; heading: string; headingTemplate: TemplateRef; description: string; width: number; minWidth: number; hidden: boolean; locked: boolean; isSortable: boolean; isSearchable: boolean; isSelectable: boolean; constructor(template: TemplateRef, headingTemplate: TemplateRef, data?: any); }