import * as React from 'react'; import { RxTableColumnProps } from '../RxTable.types'; export interface CellProps { /** Defined ClassName */ className?: string; /** The column object */ column: RxTableColumnProps; /** Override column content */ overrideContent?: React.ReactNode; /** The current row */ row: Data; /** The current row index */ rowIndex: number; } declare const Cell: React.FunctionComponent>; export default Cell;