import type { Option, TRoot } from '../root/createRoot.svelte.js'; export interface CreateListboxItemConfig { root: TRoot; item: Option; } export type TListboxItem = ReturnType; export declare function createListboxItem(config: CreateListboxItemConfig): { action(element: HTMLLIElement): { destroy(): void; }; readonly isSelected: boolean; props: { 'data-st-combobox-listbox-item': string; readonly "aria-selected": true | undefined; role: "option"; onclick(): void; readonly "data-active-item": true | undefined; }; };