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