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; testId?: string; } declare const Body: React.ForwardRefExoticComponent & { forwardedRef?: React.Ref | undefined; } & React.RefAttributes>; export default Body;