import { TableProps } from '../interfaces'; import { TableTdElementProps } from './td-element'; export interface TableBodyCellProps extends TableTdElementProps { column: TableProps.ColumnDefinition; item: ItemType; successfulEdit?: boolean; onEditStart: () => void; onEditEnd: (cancelled: boolean) => void; submitEdit?: TableProps.SubmitEditFunction; ariaLabels: TableProps['ariaLabels']; } export declare function TableBodyCell(props: TableBodyCellProps): JSX.Element;