UNPKG

@ark-ui/vue

Version:

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

18 lines (17 loc) 837 B
import { SlotsType, UnwrapRef, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { UseRatingGroupItemContext } from './use-rating-group-item-context'; export interface RatingGroupItemContextProps extends SlotsType<{ default: UnwrapRef<UseRatingGroupItemContext>; }> { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, Readonly<{ default(item: UnwrapRef<UseRatingGroupItemContext>): unknown; }> & { default(item: UnwrapRef<UseRatingGroupItemContext>): unknown; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };