import React from 'react'; import { TableColumnItem } from "./table-context"; interface Props { columns: Array; row: any; rowIndex: number; emptyText: string; onCellClick: (cell: any, rowIndex: number, colunmIndex: number) => void; } export declare type TableCellData = { row: number; column: number; rowValue: any; }; export declare type TableCellActionRemove = () => void; export declare type TableCellActionUpdate = (data: any) => void; export declare type TableCellActions = { update: TableCellActionUpdate; remove: TableCellActionRemove; }; export declare type TableOperation = (fn: TableCellActions, rowData: any) => any; declare const _default: React.NamedExoticComponent; export default _default;