@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
6 lines (5 loc) • 360 B
text/typescript
import { ItemState } from '@zag-js/rating-group';
import { ComputedRef } from 'vue';
export interface UseRatingGroupItemContext extends ComputedRef<ItemState> {
}
export declare const RatingGroupItemProvider: (opts: UseRatingGroupItemContext) => void, useRatingGroupItemContext: (fallback?: UseRatingGroupItemContext | undefined) => UseRatingGroupItemContext;