import type { Virtualizer } from '@tanstack/react-virtual'; import type { JSX } from 'react'; /** * Renders the content of the `DataTable`. * * This component is responsible for displaying the header and the main body of the datatable, * including rows and columns. */ export declare const DataTableContent: (props: { rowVirtualizer: Virtualizer; columnVirtualizer: Virtualizer; }) => JSX.Element | null;