UNPKG

@ark-ui/vue

Version:

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

25 lines (24 loc) 890 B
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; import { RootEmits, RootProps } from './steps.types'; export interface StepsRootBaseProps extends RootProps, PolymorphicProps { } export interface StepsRootProps extends StepsRootBaseProps, /** * @vue-ignore */ HTMLAttributes { } export interface StepsRootEmits extends RootEmits { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<StepsRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<StepsRootProps> & Readonly<{}>, { linear: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };