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