import * as Combobox from '../index.js'; import type { Option } from '../root/createRoot.svelte.js'; interface FruitOption extends Option { key: string; } type Fruit = string; interface Props { isOpen?: boolean; options: FruitOption[]; value?: FruitOption; } declare const Combobox: import("svelte").Component; type Combobox = ReturnType; export default Combobox;