UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 334 B
import type { HtmlIngredientProps } from '../types.js'; export interface ListboxItemTextProps extends HtmlIngredientProps<'span', HTMLSpanElement> { } declare const ListboxItemText: import("svelte").Component<ListboxItemTextProps, {}, "ref">; type ListboxItemText = ReturnType<typeof ListboxItemText>; export default ListboxItemText;