UNPKG

@ark-ui/vue

Version:

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

19 lines (18 loc) 827 B
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; export interface SelectValueTextBaseProps extends PolymorphicProps { } export interface SelectValueTextProps extends SelectValueTextBaseProps, /** * @vue-ignore */ HTMLAttributes { placeholder?: string; } declare const _default: __VLS_WithTemplateSlots< DefineComponent<SelectValueTextProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SelectValueTextProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<Record<string, any>> & Record<string, any>>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };