import React from 'react'; import { OnItemSelectFn } from '../hooks'; import { RowProps } from '../Row'; import { TableExpandable, TableProps } from '../types'; interface InternalRowContainerProps extends Pick, 'isChildrenRowsSelectable' | 'showDragIcon' | 'selectedItems' | 'item' | 'isSelectable' | 'isExpandable' | 'headerCellWidths' | 'columns' | 'isDragging'> { expandedRows: TableExpandable['expandedRows']; getChildren?: TableExpandable['getChildren']; getItemKey: (item: T, index: number) => string | number; headerless?: boolean; getLoadMoreAction?: TableExpandable['getLoadMoreAction']; parentRowIndex: number; getRowId: NonNullable['getRowId']>; onItemSelect?: OnItemSelectFn; onExpandedRow?(parentRowId?: string): void; } export declare const RowContainer: React.ForwardRefExoticComponent & React.RefAttributes>; export {}; //# sourceMappingURL=RowContainer.d.ts.map