UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

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