import { OnInit, ElementRef } from '@angular/core'; import { BodyCell, IBodyCell } from '../../holders/body-cell.component'; import { TextCell } from '../text/text.component'; export declare class TextArrayCellComponent implements IBodyCell, OnInit { private domRef; cell: TextArrayCell; value: D; array: string[]; textCell: TextCell; private dom; style: object; constructor(domRef: ElementRef); ngOnInit(): void; private setSizes; } export declare class TextArrayCell extends BodyCell { get: (row: D) => string[]; orient: 'horiz' | 'vert'; constructor(get: (row: D) => string[], orient?: 'horiz' | 'vert'); }