ui-ingredients
Version:
Headless component library for Svelte powered by zag
8 lines (7 loc) • 474 B
TypeScript
import type { Assign, HtmlIngredientProps, Optional } from '../types.js';
import type { CreateListboxProps, CreateListboxReturn } from './create-listbox.svelte.js';
export interface ListboxProps extends Assign<HtmlIngredientProps<'div', HTMLDivElement, CreateListboxReturn>, Optional<CreateListboxProps, 'id'>> {
}
declare const ListboxRoot: import("svelte").Component<ListboxProps, {}, "ref">;
type ListboxRoot = ReturnType<typeof ListboxRoot>;
export default ListboxRoot;