import { default as React } from 'react'; import { MRT_ColumnDef, MRT_RowData } from 'material-react-table'; import { IElementJson } from '../custom-form'; import { ApiFormFields } from '../../Redux/state'; interface ITableEditForm { handlePropertyValueUpdate: (event?: any, numberValue?: any, val?: any, fieldType?: any) => void; handleColumnsUpdate: (columns: MRT_ColumnDef[]) => void; element: IElementJson | null; fields: ApiFormFields | null; } declare const TableEditForm: React.FC; export default TableEditForm;