UNPKG

@ark-ui/vue

Version:

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

25 lines (24 loc) 1.07 kB
import { HTMLAttributes, UnwrapRef, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { RenderStrategyProps } from '../../utils/use-render-strategy'; import { PolymorphicProps } from '../factory'; import { UseDatePickerReturn } from './use-date-picker'; interface RootProviderProps { value: UnwrapRef<UseDatePickerReturn>; } export interface DatePickerRootProviderBaseProps extends RootProviderProps, RenderStrategyProps, PolymorphicProps { } export interface DatePickerRootProviderProps extends DatePickerRootProviderBaseProps, /** * @vue-ignore */ HTMLAttributes { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<DatePickerRootProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DatePickerRootProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };