UNPKG

@ark-ui/vue

Version:

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

6 lines (5 loc) 329 B
import { connect } from '@zag-js/checkbox'; import { ComputedRef } from 'vue'; export interface UseCheckboxContext extends ComputedRef<ReturnType<typeof connect>> { } export declare const CheckboxProvider: (opts: UseCheckboxContext) => void, useCheckboxContext: (fallback?: UseCheckboxContext | undefined) => UseCheckboxContext;