import type { GridRowId } from "./gridRows.mjs"; export type GridRowSelectionPropagation = { descendants?: boolean; parents?: boolean; }; export type GridRowSelectionModel = { type: 'include' | 'exclude'; ids: Set; };