import type { ItemProps, ItemState } from '@zag-js/listbox'; import type { Merge } from 'type-fest'; import type { HtmlIngredientProps } from '../types.js'; export interface ListboxItemProps extends Merge, ItemProps> { } declare const ListboxItem: import("svelte").Component; type ListboxItem = ReturnType; export default ListboxItem;