import { ColumnInfo } from './ColumnInfo'; import { TableProps } from './TableProps'; export declare class Row { protected readonly _props: TableProps; protected readonly _cells: (number | string)[]; get length(): number; constructor(props: TableProps); expand(len: number): void; getCell(index: number): number | string; setCell(index: number, value: number | string): void; protected static renderContent(value: string, col: ColumnInfo): string; render(): string; static renderEmpty(cols: readonly ColumnInfo[]): string; private static renderAlignmentCell; static renderAlignment(cols: readonly ColumnInfo[]): string; }