import React from 'react'; import { type State, type WithDimensionsProps } from '../../hoc/with-dimensions'; import { type HeadCellType, type RowCellType } from '../../types'; interface RankableTableCellProps extends WithDimensionsProps { head?: HeadCellType; cell: RowCellType; isFixedSize: boolean; testId?: string; } export declare class RankableTableCell extends React.Component { render(): React.JSX.Element; } declare const _default_1: React.ComponentClass, State>; export default _default_1;