import React from 'react'; import { CellFactoryFunction, DataCellType, DataRow } from '../types/cell.type'; import { DataOption } from '../types/filter.type'; import { DataColumnExtra, TableMessages } from '../types/table.type'; export interface DataTableBodyCellProps { tableRef: any; messages: TableMessages; style: React.CSSProperties; align?: "left" | "center" | "right" | "justify" | "inherit"; value: DataCellType | CellFactoryFunction; row: DataRow; column: DataColumnExtra; index: number; editting: boolean; modified: boolean; options: (value: [string, string]) => Promise; onChange: (value: any) => void; onEditting: (editting: boolean) => void; } export declare const DataTableBodyCell: React.FC; //# sourceMappingURL=body.cell.d.ts.map