import type { ComboboxItemGroup } from "../calcite-combobox-item-group/customElement.js";
import type { ComboboxItem } from "../calcite-combobox-item/customElement.js";

export type ComboboxChildElement = ComboboxItem | ComboboxItemGroup;

export type SelectionDisplay = "all" | "fit" | "single";