UNPKG

@ark-ui/vue

Version:

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

6 lines (5 loc) 366 B
import { CollectionItem } from '../collection/index.js'; import { UseSelectReturn } from './use-select.js'; export interface UseSelectContext<T extends CollectionItem> extends UseSelectReturn<T> { } export declare const SelectProvider: (opts: UseSelectContext<any>) => void, useSelectContext: (fallback?: UseSelectContext<any> | undefined) => UseSelectContext<any>;