ui-ingredients
Version:
Headless component library for Svelte powered by zag
8 lines (7 loc) • 348 B
TypeScript
import * as listbox from '@zag-js/listbox';
import type { Accessor } from '../types.js';
export interface CreateListboxProps extends Omit<listbox.Props, 'dir' | 'getRootNode'> {
}
export interface CreateListboxReturn extends listbox.Api {
}
export declare function createListbox(props: Accessor<CreateListboxProps>): Accessor<CreateListboxReturn>;