import React from 'react';
import { type WithSortedPageRowsProps } from '../hoc/with-sorted-page-rows';
import { type HeadType } from '../types';
interface BodyProps extends WithSortedPageRowsProps {
    head?: HeadType;
    highlightedRowIndex?: number | number[];
    isFixedSize: boolean;
    forwardedRef?: React.Ref<HTMLTableSectionElement>;
    testId?: string;
}
declare const Body: React.ForwardRefExoticComponent<Omit<BodyProps & import('../hoc/with-sorted-page-rows').TableProps, 'pageRows'> & {
    forwardedRef?: React.Ref<HTMLTableSectionElement> | undefined;
} & React.RefAttributes<HTMLTableSectionElement>>;
export default Body;
