import { Table } from '@tanstack/react-table'; import { EnumLabelDict, SheetDefinition, SheetRow, SheetState } from '../types'; import { ImporterOutputFieldType, ImporterValidationError } from '../../types'; interface Props { table: Table; sheetDefinition: SheetDefinition; visibleData: SheetRow[]; allData: SheetState[]; sheetValidationErrors: ImporterValidationError[]; onCellValueChanged: (rowIndex: number, columnId: string, value: ImporterOutputFieldType) => void; selectedRows: SheetRow[]; setSelectedRows: (rows: SheetRow[]) => void; enumLabelDict: EnumLabelDict; } export default function SheetDataEditorTable({ table, sheetDefinition, visibleData, allData, sheetValidationErrors, onCellValueChanged, selectedRows, setSelectedRows, enumLabelDict, }: Props): import("preact").JSX.Element; export {}; //# sourceMappingURL=SheetDataEditorTable.d.ts.map