UNPKG

bootstrap-vue-next

Version:

Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development

31 lines (30 loc) 1.38 kB
import { BAccordionSlots, BAccordionProps } from '../../types'; type __VLS_Props = Omit<BAccordionProps, 'modelValue' | 'index'>; type __VLS_Slots = BAccordionSlots; type __VLS_ModelProps = { modelValue?: BAccordionProps['modelValue']; 'index'?: BAccordionProps['index']; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: string | readonly string[] | undefined) => any; "update:index": (value: number | readonly number[] | undefined) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: string | readonly string[] | undefined) => any) | undefined; "onUpdate:index"?: ((value: number | readonly number[] | undefined) => any) | undefined; }>, { id: string; lazy: boolean; initialAnimation: boolean; unmountLazy: boolean; flush: boolean; free: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };