import { DInputTextArea, DInputTextAreaOptions, DThemeInputTextArea } from "./d-input-text-area"; import { DTableBodyCell, DTableBodyCellOnChange } from "./d-table-body-cell"; import { DTableColumn } from "./d-table-column"; import { DTableDataSupplimental } from "./d-table-data"; export interface DTableBodyCellInputTextAreaOptions extends DInputTextAreaOptions { } export interface DThemeTableBodyCellInputTextArea extends DThemeInputTextArea { } export declare class DTableBodyCellInputTextArea = DTableBodyCellInputTextAreaOptions> extends DInputTextArea implements DTableBodyCell { protected _row?: ROW; protected _rowIndex: number; protected _columnIndex: number; protected _column: DTableColumn; protected _onChange: DTableBodyCellOnChange; protected _forcibly?: boolean; constructor(columnIndex: number, column: DTableColumn, onChange: DTableBodyCellOnChange, options?: OPTIONS); protected onValueChange(newValue: string, oldValue: string): void; get row(): ROW | undefined; get rowIndex(): number; get columnIndex(): number; get column(): DTableColumn; set(value: unknown, row: ROW, supplimental: DTableDataSupplimental | null, rowIndex: number, columnIndex: number, forcibly?: boolean): void; unset(forcibly?: boolean): void; protected getType(): string; }