ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 330 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface TagsInputInputProps extends HtmlIngredientProps<'input', HTMLInputElement> {
}
declare const TagsInputInput: import("svelte").Component<TagsInputInputProps, {}, "ref">;
type TagsInputInput = ReturnType<typeof TagsInputInput>;
export default TagsInputInput;