import { ComponentFactoryResolver, OnInit } from '@angular/core'; import { CellDirective } from './cell.directive'; import { CellService } from './cell-types/cell.service'; import { ColumnConfig } from '../column-config.model'; export declare class TableCellComponent implements OnInit { private readonly cellService; private readonly componentFactoryResolver; cellHost: CellDirective; row: object; column: ColumnConfig; constructor(cellService: CellService, componentFactoryResolver: ComponentFactoryResolver); ngOnInit(): void; initCell(): void; }