import React, { ComponentPropsWithoutRef } from 'react'; import { TableColumn, TableSelectable } from '../types'; export interface RowProps extends ComponentPropsWithoutRef<'tr'> { columns: Array>; headerCellWidths: Array; isDraggable: boolean; isDragging?: boolean; isExpanded?: boolean; isExpandable?: boolean; isParentRow?: boolean; isSelected?: boolean; isSelectable?: boolean; item: T; selectedItems: TableSelectable['selectedItems']; showDragIcon?: boolean; isChildrenRowsSelectable?: TableSelectable['isChildrenRowsSelectable']; onExpandedRow?: () => void; onItemSelect: () => void; parentRowId: string; childRowId?: string; childrenRowsIds: string[]; } export declare const Row: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=Row.d.ts.map