import type { Snippet } from 'svelte'; interface ComboboxMenuItemProps { value: string; label?: string; disabled?: boolean; keywords?: string[]; selected?: boolean; highlighted?: boolean; register?: boolean; class?: string; children?: Snippet; onclick?: () => void; onhighlight?: () => void; } declare const ComboboxMenuItem: import("svelte").Component; type ComboboxMenuItem = ReturnType; export default ComboboxMenuItem;