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.2 kB
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; import { GroupEmits, GroupProps } from './checkbox-group.types.ts'; export interface CheckboxGroupBaseProps extends GroupProps, PolymorphicProps { } export interface CheckboxGroupProps extends CheckboxGroupBaseProps, /** * @vue-ignore */ HTMLAttributes { } export interface CheckboxGroupEmits extends GroupEmits { } declare const _default: __VLS_WithTemplateSlots< DefineComponent<CheckboxGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { valueChange: (value: string[]) => any; "update:modelValue": (value: string[]) => any; }, string, PublicProps, Readonly<CheckboxGroupProps> & Readonly<{ onValueChange?: ((value: string[]) => any) | undefined; "onUpdate:modelValue"?: ((value: string[]) => any) | undefined; }>, { invalid: boolean; disabled: boolean; readOnly: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };