UNPKG

@ark-ui/vue

Version:

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

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