@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
33 lines (32 loc) • 1.34 kB
TypeScript
import '@ui5/webcomponents/dist/MultiComboBoxItem.js';
import type { CommonProps, Ui5DomRef } from '../../types/index.js';
interface MultiComboBoxItemAttributes {
/**
* Defines the additional text of the component.
* @default undefined
*/
additionalText?: string | undefined;
/**
* Defines the selected state of the component.
* @default false
*/
selected?: boolean;
/**
* Defines the text of the component.
* @default undefined
*/
text?: string | undefined;
}
interface MultiComboBoxItemDomRef extends Required<MultiComboBoxItemAttributes>, Ui5DomRef {
}
interface MultiComboBoxItemPropTypes extends MultiComboBoxItemAttributes, Omit<CommonProps, keyof MultiComboBoxItemAttributes> {
}
/**
* The `MultiComboBoxItem` represents the item for a `MultiComboBox`.
*
* __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/)
* @abstract
*/
declare const MultiComboBoxItem: import("react").ForwardRefExoticComponent<MultiComboBoxItemPropTypes & import("../../internal/withWebComponent.js").WithWebComponentPropTypes & import("react").RefAttributes<MultiComboBoxItemDomRef>>;
export { MultiComboBoxItem };
export type { MultiComboBoxItemDomRef, MultiComboBoxItemPropTypes };