UNPKG

bootstrap-vue-next

Version:

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

53 lines (52 loc) 1.78 kB
import { BFormCheckboxGroupBaseProps, CheckboxValue } from '../../types'; type __VLS_Props = Omit<BFormCheckboxGroupBaseProps, 'modelValue'>; type __VLS_ModelProps = { modelValue?: CheckboxValue[]; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare var __VLS_1: {}, __VLS_9: { text: string; value: CheckboxValue; disabled: boolean; }, __VLS_11: {}; type __VLS_Slots = {} & { first?: (props: typeof __VLS_1) => any; } & { option?: (props: typeof __VLS_9) => any; } & { default?: (props: typeof __VLS_11) => any; }; declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, { blur: () => void; focus: () => void; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: CheckboxValue[]) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: CheckboxValue[]) => any) | undefined; }>, { buttons: boolean; disabled: boolean; ariaInvalid: import('../..').AriaInvalid; autofocus: boolean; form: string; id: string; name: string; required: boolean; size: import('../..').Size; state: import('../..').ValidationState; stacked: boolean; options: import('../..').CheckboxOptionRaw[]; validated: boolean; reverse: boolean; plain: boolean; buttonVariant: import('../..').ButtonVariant | null; switches: 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; }; };