import type { GridItemModel, GridElement } from '../generated/Grid.js'; import type { GridColumnElement } from '../generated/GridColumn.js'; import type { ReactModelRendererProps } from './useModelRenderer.js'; import type { ReactSimpleRendererProps } from './useSimpleRenderer.js'; export type GridRowDetailsReactRendererProps = ReactModelRendererProps< TItem, GridItemModel, GridElement >; export type GridBodyReactRendererProps = ReactModelRendererProps< TItem, GridItemModel, GridColumnElement >; export type GridEdgeReactRendererProps = ReactSimpleRendererProps>;