UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 324 B
import type { HtmlIngredientProps } from '../types.js'; export interface ComboboxInputProps extends HtmlIngredientProps<'input', HTMLInputElement> { } declare const ComboboxInput: import("svelte").Component<ComboboxInputProps, {}, "ref">; type ComboboxInput = ReturnType<typeof ComboboxInput>; export default ComboboxInput;