import type { Snippet } from 'svelte'; interface ComboboxItemProps { value: string; /** Used for default text and query filtering when nested in `Combobox`. */ label?: string; disabled?: boolean; /** Extra strings matched against the parent `Combobox` query. */ keywords?: string[]; /** * When omitted, selection comes from the parent `Combobox`. * Pass explicitly when using the item standalone. */ selected?: boolean; /** * When omitted, highlight comes from the parent `Combobox`. * Pass explicitly when using the item standalone. */ highlighted?: boolean; /** * Register this row for keyboard navigation / query filtering. * Internal `Combobox` rows set this to `false` (parent already filters). */ register?: boolean; class?: string; children?: Snippet; leading?: Snippet; trailing?: Snippet; onclick?: () => void; onhighlight?: () => void; } declare const ComboboxItem: import("svelte").Component; type ComboboxItem = ReturnType; export default ComboboxItem;