import Component from '../../components/option/option.js'; /** * @summary Options represent the individual choices inside a select or similar form control. Each option holds a value * and the label shown to the user. * @documentation https://webawesome.com/docs/components/option * @status stable * @since 2.0 * * @dependency wa-icon * * @slot - The option's label. * @slot start - An element, such as ``, placed before the label. * @slot end - An element, such as ``, placed after the label. * * @csspart checked-icon - The checked icon, a `` element. * @csspart label - The option's label. * @csspart start - The container that wraps the `start` slot. * @csspart end - The container that wraps the `end` slot. * * @cssstate current - The user has keyed into the option, but hasn't selected it yet (shows a highlight) * @cssstate selected - The option is selected and has aria-selected="true" * @cssstate disabled - Applied when the option is disabled * @cssstate hover - Like `:hover` but works while dragging in Safari */ declare const reactWrapper: import("@lit/react").ReactWebComponent; export default reactWrapper;