import { DInputInteger, DInputIntegerOptions, DThemeInputInteger } from "./d-input-integer"; import { DTableBodyCell, DTableBodyCellOnChange } from "./d-table-body-cell"; import { DTableColumn } from "./d-table-column"; import { DTableDataSupplimental } from "./d-table-data"; export interface DTableBodyCellInputIntegerOptions extends DInputIntegerOptions { } export interface DThemeTableBodyCellInputInteger extends DThemeInputInteger { } export declare class DTableBodyCellInputInteger = DTableBodyCellInputIntegerOptions> extends DInputInteger 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: number, oldValue: number): 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; }