import React from 'react'; import { TableProps } from '../interfaces'; interface TableBodyCellProps { className?: string; style?: React.CSSProperties; wrapLines: boolean | undefined; isFirstRow: boolean; isLastRow: boolean; isSelected: boolean; isNextSelected: boolean; isPrevSelected: boolean; children?: React.ReactNode; } export declare function TableBodyCell({ className, style, children, wrapLines, isFirstRow, isLastRow, isSelected, isNextSelected, isPrevSelected, }: TableBodyCellProps): JSX.Element; interface TableBodyCellContentProps extends TableBodyCellProps { column: TableProps.ColumnDefinition; item: ItemType; } export declare function TableBodyCellContent({ item, column, ...rest }: TableBodyCellContentProps): JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map