UNPKG

bootstrap-vue-next

Version:

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

42 lines (41 loc) 1.61 kB
import { BFormRatingProps, BFormRatingSlots, Size } from '../../types'; type __VLS_Props = Omit<BFormRatingProps, 'modelValue'>; type __VLS_Slots = BFormRatingSlots; type __VLS_ModelProps = { modelValue?: Exclude<BFormRatingProps['modelValue'], undefined>; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, { hoverValue: import('vue').Ref<number | null, number | null>; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: number) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: number) => any) | undefined; }>, { disabled: boolean; form: string; id: string; name: string; readonly: boolean; size: Size; color: string; variant: "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "light" | "dark" | string; precision: number; showValue: boolean; inline: boolean; length: import('../../types/CommonTypes').Numberish; locale: string; clearLabel: string; labelValueCurrent: (current: number, max: number) => string; noBorder: boolean; showClear: boolean; showValueMax: 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; }; };