export declare enum ComboboxItemDataAttributes {
  /**
   * Present when the item is selected.
   */
  selected = "data-selected",
  /**
   * Present when the item is highlighted.
   */
  highlighted = "data-highlighted",
  /**
   * Present when the item is disabled.
   */
  disabled = "data-disabled",
}