import React from 'react'; import type { DataRowProps } from '@epam/uui-core'; import type { VirtualListRenderRowsParams } from '../../layout'; export interface DataRowsContainerProps extends VirtualListRenderRowsParams { rows: DataRowProps[]; renderRow: (row: DataRowProps) => React.ReactNode; headerRef?: React.MutableRefObject; } export declare function DataRowsContainer({ estimatedHeight, listContainerRef, offsetY, rows, renderRow, headerRef, }: DataRowsContainerProps): React.JSX.Element; //# sourceMappingURL=DataRowsContainer.d.ts.map