UNPKG

@ark-ui/vue

Version:

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

33 lines (32 loc) 1.27 kB
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; import { RootEmits, RootProps } from './radio-group.types'; import { ValueChangeDetails } from '@zag-js/radio-group'; export interface RadioGroupRootBaseProps extends RootProps, PolymorphicProps { } export interface RadioGroupRootProps extends RadioGroupRootBaseProps, /** * @vue-ignore */ HTMLAttributes { } export interface RadioGroupRootEmits extends RootEmits { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<RadioGroupRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { valueChange: (details: ValueChangeDetails) => any; "update:modelValue": (value: string | null) => any; }, string, PublicProps, Readonly<RadioGroupRootProps> & Readonly<{ onValueChange?: ((details: ValueChangeDetails) => any) | undefined; "onUpdate:modelValue"?: ((value: string | null) => any) | undefined; }>, { disabled: boolean; readOnly: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };