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 any; "update:modelValue": (value: string[]) => any; }, string, PublicProps, Readonly & 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 & { new (): { $slots: S; }; };