UNPKG

bootstrap-vue-next

Version:

BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.

55 lines (54 loc) 2.6 kB
import { BCardProps } from '../../types/ComponentProps'; import { BCardSlots } from '../../types'; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<BCardSlots> & BCardSlots; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import('vue').DefineComponent<BCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BCardProps> & Readonly<{}>, { title: string; tag: string; header: string; footer: string; bodyClass: import('../../types/AnyValuedAttributes').ClassValue; headerClass: import('../../types/AnyValuedAttributes').ClassValue; headerTag: string; variant: import('../..').ColorVariant | null; borderVariant: import('../../types/ColorTypes').BorderColorVariant | null; bgVariant: import('../../types/ColorTypes').BgColorVariant | null; textVariant: import('../..').TextColorVariant | null; bodyBgVariant: import('../../types/ColorTypes').BgColorVariant | null; bodyTextVariant: import('../..').TextColorVariant | null; footerBgVariant: import('../../types/ColorTypes').BgColorVariant | null; footerBorderVariant: import('../../types/ColorTypes').BorderColorVariant | null; footerClass: import('../../types/AnyValuedAttributes').ClassValue; footerTextVariant: import('../..').TextColorVariant | null; footerVariant: import('../..').ColorVariant | null; headerBgVariant: import('../../types/ColorTypes').BgColorVariant | null; headerBorderVariant: import('../../types/ColorTypes').BorderColorVariant | null; headerTextVariant: import('../..').TextColorVariant | null; headerVariant: import('../..').ColorVariant | null; titleTag: string; align: import('../..').AlignmentTextHorizontal; subtitle: string; subtitleTag: string; subtitleTextVariant: import('../..').TextColorVariant | null; bodyTag: string; bodyText: string; footerTag: string; imgAlt: string; imgPlacement: import('../..').Placement | "overlay"; imgHeight: import('../../types/CommonTypes').Numberish; imgSrc: string; imgWidth: import('../../types/CommonTypes').Numberish; noBody: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };