import Component from '../../components/select/select.component.js'; import { type EventName } from '@lit/react'; import type { AWCChangeEvent } from '../../events/events.js'; import type { AWCClearEvent } from '../../events/events.js'; import type { AWCInputEvent } from '../../events/events.js'; import type { AWCFocusEvent } from '../../events/events.js'; import type { AWCBlurEvent } from '../../events/events.js'; import type { AWCShowEvent } from '../../events/events.js'; import type { AWCAfterShowEvent } from '../../events/events.js'; import type { AWCHideEvent } from '../../events/events.js'; import type { AWCAfterHideEvent } from '../../events/events.js'; import type { AWCInvalidEvent } from '../../events/events.js'; export type { AWCChangeEvent } from '../../events/events.js'; export type { AWCClearEvent } from '../../events/events.js'; export type { AWCInputEvent } from '../../events/events.js'; export type { AWCFocusEvent } from '../../events/events.js'; export type { AWCBlurEvent } from '../../events/events.js'; export type { AWCShowEvent } from '../../events/events.js'; export type { AWCAfterShowEvent } from '../../events/events.js'; export type { AWCHideEvent } from '../../events/events.js'; export type { AWCAfterHideEvent } from '../../events/events.js'; export type { AWCInvalidEvent } from '../../events/events.js'; /** * @summary Selects allow you to choose items from a menu of predefined options. * @documentation https://webcomponents.adeliom.io/?path=/docs/components-select--documentation * @status stable * @since 1.0 * * @dependency awc-icon * @dependency awc-popup * @dependency awc-tag * * @slot - The listbox options. Must be `` elements. You can use `` to group items visually. * @slot label - The input's label. Alternatively, you can use the `label` attribute. * @slot prefix - Used to prepend a presentational icon or similar element to the combobox. * @slot clear-icon - An icon to use in lieu of the default clear icon. * @slot expand-icon - The icon to show when the control is expanded and collapsed. Rotates on open and close. * @slot help-text - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute. * * @event awc-change - Emitted when the control's value changes. * @event awc-clear - Emitted when the control's value is cleared. * @event awc-input - Emitted when the control receives input. * @event awc-focus - Emitted when the control gains focus. * @event awc-blur - Emitted when the control loses focus. * @event awc-show - Emitted when the select's menu opens. * @event awc-after-show - Emitted after the select's menu opens and all animations are complete. * @event awc-hide - Emitted when the select's menu closes. * @event awc-after-hide - Emitted after the select's menu closes and all animations are complete. * @event awc-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied. * * @csspart form-control - The form control that wraps the label, input, and help text. * @csspart form-control-label - The label's wrapper. * @csspart form-control-input - The select's wrapper. * @csspart form-control-help-text - The help text's wrapper. * @csspart combobox - The container the wraps the prefix, combobox, clear icon, and expand button. * @csspart prefix - The container that wraps the prefix slot. * @csspart display-input - The element that displays the selected option's label, an `` element. * @csspart listbox - The listbox container where options are slotted. * @csspart tags - The container that houses option tags when `multiselect` is used. * @csspart tag - The individual tags that represent each multiselect option. * @csspart tag__base - The tag's base part. * @csspart tag__content - The tag's content part. * @csspart tag__remove-button - The tag's remove button. * @csspart tag__remove-button__base - The tag's remove button base part. * @csspart clear-button - The clear button. * @csspart expand-icon - The container that wraps the expand icon. */ declare const reactWrapper: import("@lit/react").ReactWebComponent; onAwcClear: EventName; onAwcInput: EventName; onAwcFocus: EventName; onAwcBlur: EventName; onAwcShow: EventName; onAwcAfterShow: EventName; onAwcHide: EventName; onAwcAfterHide: EventName; onAwcInvalid: EventName; }>; export default reactWrapper;