import * as React from 'react'; import { IRowCell } from './RemoteTable.types'; interface IRowProps { onClick?(): any; cells: IRowCell[]; } declare const Row: React.FC; export default Row;