import type { HTMLAttributes } from 'svelte/elements'; import type { TRoot } from '../root/createRoot.svelte.js'; interface Props extends HTMLAttributes { root?: TRoot; } declare const Listbox: import("svelte").Component; type Listbox = ReturnType; export default Listbox;