import React from 'react';
import { type State, type WithDimensionsProps } from '../../hoc/with-dimensions';
import { type HeadType, type RowType } from '../../types';
interface RankableTableRowProps extends WithDimensionsProps {
    head?: HeadType;
    isFixedSize: boolean;
    row: RowType;
    rowIndex: number;
    isRankingDisabled: boolean;
    isHighlighted?: boolean;
    testId?: string;
}
declare const _default_1: React.ComponentClass<Omit<RankableTableRowProps, 'refWidth' | 'refHeight' | 'innerRef'>, State>;
export default _default_1;
