import React from 'react'; import { InternalWorksheetColumn, Cell as TCell, WorksheetItem, WorksheetSelectableColumn, WorksheetTextColumn } from '../types'; interface CellProps extends TCell { nextRowValue: Item[keyof Item] | ''; isLastChild: boolean; isChild: boolean; options?: WorksheetSelectableColumn['config']['options']; rowId: number | string; formatting?: WorksheetTextColumn['formatting']; validation?: InternalWorksheetColumn['validation']; notation?: InternalWorksheetColumn['notation']; action?: WorksheetTextColumn['action']; } export declare const Cell: ({ columnIndex, disabled, formatting, hash, options, rowIndex, type, rowId, validation, notation, value, nextRowValue, isChild, isLastChild, action, }: CellProps) => React.JSX.Element; export {}; //# sourceMappingURL=Cell.d.ts.map