import type {Alignment} from '../..' // Props export interface Props { activeNavItemClass?: Array | Record | string activeTabClass?: Array | Record | string align?: Alignment.Horizontal card?: boolean contentClass?: Array | Record | string end?: boolean fill?: boolean id?: string justified?: boolean lazy?: boolean navClass?: Array | Record | string navWrapperClass?: Array | Record | string noFade?: boolean // noKeyNav?: boolean noNavStyle?: boolean pills?: boolean small?: boolean tag?: string vertical?: boolean modelValue?: number } // Emits export interface Emits { (e: 'update:modelValue', value: number): void (e: 'activate-tab'): void (e: 'click'): void } // Other export interface ParentData { lazy: boolean card: boolean }