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