UNPKG

@ark-ui/vue

Version:

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

23 lines (22 loc) 904 B
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; export interface TreeViewNodeCheckboxIndicatorBaseProps { indeterminate?: unknown; fallback?: unknown; } export interface TreeViewNodeCheckboxIndicatorProps extends TreeViewNodeCheckboxIndicatorBaseProps { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<TreeViewNodeCheckboxIndicatorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TreeViewNodeCheckboxIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{ default(): void; indeterminate(): void; fallback(): void; }> & { default(): void; indeterminate(): void; fallback(): void; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };