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