UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

31 lines (30 loc) 1.17 kB
import '@ui5/webcomponents-fiori/dist/FilterItemOption.js'; import type { CommonProps, Ui5DomRef } from '../../types/index.js'; interface FilterItemOptionAttributes { /** * Defines if the component is selected. * @default false */ selected?: boolean; /** * Defines the text of the component. * @default undefined */ text?: string | undefined; } interface FilterItemOptionDomRef extends Required<FilterItemOptionAttributes>, Ui5DomRef { } interface FilterItemOptionPropTypes extends FilterItemOptionAttributes, Omit<CommonProps, keyof FilterItemOptionAttributes> { } /** * ### Usage * * For the `FilterItemOption` * * * __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/) * @abstract */ declare const FilterItemOption: import("react").ForwardRefExoticComponent<FilterItemOptionPropTypes & import("../../internal/withWebComponent.js").WithWebComponentPropTypes & import("react").RefAttributes<FilterItemOptionDomRef>>; export { FilterItemOption }; export type { FilterItemOptionDomRef, FilterItemOptionPropTypes };