import { BeastGridConfig, Column, Data, RowConfig, RowEvents } from '../../common'; type TBodyProps = { rowHeight: number; beastConfig: BeastGridConfig; config?: Partial; border?: boolean; filters?: Record; events?: Partial; scrollTop: number; scrollElement: HTMLElement; onSortChange?: (data: Data, sortColumns: Column[]) => Promise; }; export default function TBody({ rowHeight, config, beastConfig, border, events, scrollTop, scrollElement, onSortChange, }: TBodyProps): import("react/jsx-runtime").JSX.Element; export {};