UNPKG

bootstrap-vue-next

Version:

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

59 lines (58 loc) 1.95 kB
import { BFormCheckboxGroupBaseProps } from '../../types/ComponentProps'; import { CheckboxValue } from '../../types/CheckboxTypes'; type __VLS_Props = Omit<BFormCheckboxGroupBaseProps, 'modelValue'>; type __VLS_PublicProps = { modelValue?: CheckboxValue[]; } & __VLS_Props; declare function __VLS_template(): { attrs: Partial<{}>; slots: { first?(_: {}): any; option?(_: { text: string; value: CheckboxValue; disabled: boolean; }): any; default?(_: {}): any; }; refs: { _element: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: 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; }>, { disabled: boolean; ariaInvalid: import('../..').AriaInvalid; autofocus: boolean; form: string; id: string; name: string; required: boolean; size: import('../..').Size; state: import('../..').ValidationState; buttons: boolean; reverse: boolean; options: import('../..').CheckboxOptionRaw[]; stacked: boolean; validated: boolean; plain: boolean; buttonVariant: import('../..').ButtonVariant | null; switches: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { _element: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };