import Row from "./Row"; import type { RowData } from "./Row"; type RowSelectionChangeProps = { row: TData; isSelected: boolean; selectedRows: Set; }; export default RowSelectionChangeProps;