UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

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