import React from 'react';
import { type HeadType, type RowType } from '../types';
interface RowProps {
    head?: HeadType;
    isFixedSize: boolean;
    isHighlighted?: boolean;
    row: RowType;
    testId?: string;
}
declare const Row: ({ row, head, testId, isFixedSize, isHighlighted }: RowProps) => React.JSX.Element;
export default Row;
