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