import { OnInit, TemplateRef, OnDestroy } from '@angular/core'; import { NgxExcelColumnTemplateContext } from '../../models/models'; import { NgxExcelComponent } from '../ngx-excel/ngx-excel.component'; export declare class NgxExcelColumnComponent implements OnInit, OnDestroy { protected excelComponent: NgxExcelComponent; private _locked; private _readonly; private _invisible; private _sortable; name: string; label: string; width: number; tooltip: string; index: number; locked: boolean; readonly: boolean; invisible: boolean; sortable: boolean; template: TemplateRef; templateEdit: TemplateRef; templateHead: TemplateRef; onClickedCallback: (context: any) => void; constructor(excelComponent: NgxExcelComponent); ngOnInit(): void; ngOnDestroy(): void; }