/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Represents the props of the each ListView item. */ export interface ListViewItemProps { /** * The data object that represents the current item. */ dataItem: any; /** * The index of the item in the data collection. */ index?: number; }