import * as React from "react"; import { BeeTableCellUpdate } from "."; import * as ReactTable from "react-table"; export declare function BeeTableDefaultCell({ cellProps, onCellUpdates, isReadOnly, columnIndex, setEditing, navigateHorizontally, navigateVertically, }: { isReadOnly: boolean; cellProps: ReactTable.CellProps; onCellUpdates?: (cellUpdates: BeeTableCellUpdate[]) => void; columnIndex: number; setEditing: React.Dispatch>; navigateVertically: (args: { isShiftPressed: boolean; }) => void; navigateHorizontally: (args: { isShiftPressed: boolean; }) => void; }): JSX.Element; //# sourceMappingURL=BeeTableDefaultCell.d.ts.map