import { OnInit } from "@angular/core"; import { IBodyCell, BodyCell } from '../../holders/body-cell.component'; export declare class TextCellComponent implements IBodyCell, OnInit { cell: TextCell; value: D; string: string; ngOnInit(): void; getValueForSearcher(): string; } export declare class TextCell extends BodyCell { get: (row: D) => string; constructor(get: (row: D) => string); }