diff --git a/packages/virtualized-lists/Lists/VirtualizedList.d.ts b/packages/virtualized-lists/Lists/VirtualizedList.d.ts index 85c1c9f258fc..06d5e63b9973 100644 --- a/packages/virtualized-lists/Lists/VirtualizedList.d.ts +++ b/packages/virtualized-lists/Lists/VirtualizedList.d.ts @@ -190,8 +190,8 @@ export interface VirtualizedListWithoutRenderItemProps< /** * Each data item is rendered using this element, as an alternative to `renderItem`. - * Can be a React Component Class or a render function. In addition to the data provided - * to `renderItem`, this receives `index` and `separators` metadata. + * It receives the same `item`, `index` and `separators` that `renderItem` gets. If both + * are provided, `ListItemComponent` takes precedence and a warning is logged. */ ListItemComponent?: React.ComponentType | React.ReactElement | null | undefined;