import * as React from 'react'; import { alignOptions } from './RemoteTable.types'; interface IRowCellProps { value: string | React.ReactNode; rowStyle?: object; align: alignOptions; } declare const RowCell: React.FC; export default RowCell;