import { TemplateRef } from '@angular/core'; import { NzSafeAny } from 'ng-zorro-antd/core/types'; import { EBixiCustomTplType } from '../table.type'; interface IColTemplateRows { [key: string]: TemplateRef; } export declare class ColTemplateService { headerRows: Partial; bodyRows: Partial; add(colName: string, ref: TemplateRef, type: EBixiCustomTplType): void; getTemplateRef(refName: string, type: EBixiCustomTplType): TemplateRef | undefined; } export {};