import { type JSX } from 'react'; import { DataTableEmptyState } from './DataTableEmptyState.js'; import { type Table } from '../hooks/useTable/types.js'; export declare function DataTableVirtualizationContainer(props: Readonly<{ table: Table; emptyState: ReturnType; fullHeight: boolean; }>): JSX.Element;