UNPKG

@ark-ui/vue

Version:

A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.

6 lines (5 loc) 363 B
import { CollectionItem } from '../collection'; import { UseListboxReturn } from './use-listbox'; export interface UseListboxContext<T extends CollectionItem> extends UseListboxReturn<T> { } export declare const ListboxProvider: (opts: UseListboxContext<any>) => void, useListboxContext: (fallback?: UseListboxContext<any> | undefined) => UseListboxContext<any>;