import type { HTMLLiAttributes } from 'svelte/elements'; import type { Option } from '../root/createRoot.svelte.js'; import type { Snippet } from 'svelte'; import type { TRoot } from '../root/createRoot.svelte.js'; import { type TListboxItem } from './createListboxItem.svelte.js'; interface Props extends Omit { children?: Snippet<[TListboxItem]>; item: Option; root?: TRoot; } declare const ListboxItem: import("svelte").Component; type ListboxItem = ReturnType; export default ListboxItem;