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