UNPKG

@ark-ui/vue

Version:

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

28 lines (27 loc) 1.06 kB
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; import { RootEmits, RootProps } from './avatar.types'; import { StatusChangeDetails } from '@zag-js/avatar'; export interface AvatarRootBaseProps extends RootProps, PolymorphicProps { } export interface AvatarRootProps extends AvatarRootBaseProps, /** * @vue-ignore */ HTMLAttributes { } export interface AvatarRootEmits extends RootEmits { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<AvatarRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { statusChange: (details: StatusChangeDetails) => any; }, string, PublicProps, Readonly<AvatarRootProps> & Readonly<{ onStatusChange?: ((details: StatusChangeDetails) => any) | undefined; }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };