UNPKG

@ark-ui/vue

Version:

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

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