import type { Components, JSX } from "../types/components"; interface ComboBoxItem extends Components.ComboBoxItem, HTMLElement {} export const ComboBoxItem: { prototype: ComboBoxItem; new (): ComboBoxItem; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;