/** * Copyright IBM Corp. 2016, 2026 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import PropTypes from 'prop-types'; import { type HTMLAttributes, type OptionHTMLAttributes } from 'react'; export interface SelectItemProps extends HTMLAttributes { /** * Specify an optional className to be applied to the node */ className?: string; /** * Specify whether the should be disabled */ disabled?: boolean; /** * Specify whether the is hidden */ hidden?: boolean; /** * Provide the contents of your */ text: string; /** * Specify the value of the */ value: OptionHTMLAttributes['value']; } declare const SelectItem: { ({ className, value, disabled, hidden, text, ...other }: SelectItemProps): import("react/jsx-runtime").JSX.Element; propTypes: { /** * Specify an optional className to be applied to the node */ className: PropTypes.Requireable; /** * Specify whether the should be disabled */ disabled: PropTypes.Requireable; /** * Specify whether the is hidden */ hidden: PropTypes.Requireable; /** * Provide the contents of your */ text: PropTypes.Validator; /** * Specify the value of the */ value: PropTypes.Validator; }; }; export default SelectItem;