UNPKG

@ark-ui/vue

Version:

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

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