/** * SPDX-FileCopyrightText: (c) 2026 Liferay, Inc. https://liferay.com * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06 */ import React from 'react'; export interface IProps extends React.HTMLAttributes { /** * Flag that indicates if item is selected. * @deprecated since v3.151.0 - use the `selectedKeys` property on the * root component. */ 'active'?: boolean; /** * The item content. */ 'children'?: React.ReactNode; /** * @ignore */ 'data-index'?: number; /** * Flag that indicates if item is disabled or not. */ 'disabled'?: boolean; /** * Flag to indicate if matched text is highlighted */ 'highlightMatch'?: boolean; /** * Path for item to link to. */ 'href'?: string; 'innerRef'?: React.Ref; /** * Internal property. * @ignore */ 'keyValue'?: React.Key; /** * Match is the string that will be compared with value. */ 'match'?: string; /** * Sets the role accessibility property of the item. Set the item's * container (
  • ) role use the role="" prop instead of roleItem="". */ 'roleItem'?: string; /** * Path to icon spritemap from clay-css. */ 'spritemap'?: string; /** * Flag that indicates if there is an icon symbol on the left side. */ 'symbolLeft'?: string; /** * Flag that indicates if there is an icon symbol on the right side. */ 'symbolRight'?: string; /** * Sets a text value if the component's content is not plain text. This value * is used in the combobox element to show the selected option. */ 'textValue'?: string; /** * Value is the string that will be compared to the characters of * the match property. * @deprecated since v3.74.0 - use `children` instead. */ 'value'?: string; } declare const Item: React.ForwardRefExoticComponent>; export default Item;