UNPKG

bootstrap-vue-next

Version:

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

47 lines (46 loc) 1.79 kB
import { BFormRadioGroupBaseProps, BFormRadioGroupSlots } from '../../types'; /** * Internal base component for BFormRadioGroup. * This component is non-generic and uses useDefaults for complete default support. * Users should use BFormRadioGroup (the type-safe wrapper) instead. * @internal */ type __VLS_Props = Omit<BFormRadioGroupBaseProps, 'modelValue'>; type __VLS_Slots = BFormRadioGroupSlots; type __VLS_ModelProps = { modelValue?: BFormRadioGroupBaseProps['modelValue']; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, { blur: () => void; focus: () => void; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: import('../..').RadioValue | undefined) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: import('../..').RadioValue | undefined) => 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: readonly import('../..').RadioOption[]; validated: boolean; reverse: boolean; plain: boolean; buttonVariant: import('../..').ButtonVariant | null; }, {}, {}, {}, 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; }; };