UNPKG

@ark-ui/vue

Version:

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

24 lines (23 loc) 974 B
import { HTMLAttributes, UnwrapRef, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory.js'; import { UseDateInputReturn } from './use-date-input.js'; interface RootProviderProps { value: UnwrapRef<UseDateInputReturn>; } export interface DateInputRootProviderBaseProps extends RootProviderProps, PolymorphicProps { } export interface DateInputRootProviderProps extends DateInputRootProviderBaseProps, /** * @vue-ignore */ HTMLAttributes { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<DateInputRootProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DateInputRootProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };