///
import { RowData, TableCell } from "./types";
import { EditRowValidationError } from "./useEditRow";
interface BodyCellProps {
errors?: null | EditRowValidationError[];
cell: TableCell;
}
export default function BodyCell({ cell, }: BodyCellProps): JSX.Element | null;
export {};